Created
November 20, 2014 12:16
-
-
Save etoxin/17390b120571e0b079bf to your computer and use it in GitHub Desktop.
Terminal Tips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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