Skip to content

Instantly share code, notes, and snippets.

@bmorwood
Created November 24, 2014 19:43
Show Gist options
  • Save bmorwood/ee5cac820cc5805a5e3a to your computer and use it in GitHub Desktop.
Save bmorwood/ee5cac820cc5805a5e3a to your computer and use it in GitHub Desktop.
love-your-terminal.sh
# search your command-line history
history | grep 'querySelector'
# copy to clipboard
echo 'Hello World!' | pbcopy
# unzip an archive to the current directory
unzip -l images.zip
# find out what process are taking up the most memory
top -o vsize
# run the last command with sudo
sudo !!
# use spotlight to search from command-line
mdfind <keyword>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment