Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created November 20, 2014 12:16
Show Gist options
  • Save etoxin/17390b120571e0b079bf to your computer and use it in GitHub Desktop.
Save etoxin/17390b120571e0b079bf to your computer and use it in GitHub Desktop.
Terminal Tips
# Search your command line history
history | grep 'Whatever'
# Discover what's eating your memory
top -o vsize
# Copy to the clipboard
echo "Boom" | pbcopy
# unzip archive into current directory
unzip -l images.zip
# run that last command as sudo
sudo !!
# use Spotlight to search from the command line
mdfind <keyword>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment