Skip to content

Instantly share code, notes, and snippets.

View mehar's full-sized avatar
💭
Hiring software craftsmen

Mehar mehar

💭
Hiring software craftsmen
  • hudku
  • Bangalore
View GitHub Profile
@mehar
mehar / BashCommandCheatSheet.sh
Last active May 13, 2018 13:56
Bash Command CheatSheet
# Single Quote ('') vs Double Quote("")
Enclosing characters in single quotes (‘'’) preserves the literal value of each character within the quotes. A single quote may not occur between single quotes, even when preceded by a backslash.
[https://www.gnu.org/software/bash/manual/html_node/Double-Quotes.html#Double-Quotes]
# Sort directories by size and print
du -h --max-depth=1 | sort -hr
# Setup ssh key based access
ssh-copy-id user@host