Created
May 23, 2012 23:11
-
-
Save lightyrs/2778426 to your computer and use it in GitHub Desktop.
More aliases
This file contains 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
# ps aux | ack {process_name} | |
function pq() { ps aux | ack $1; } | |
# cd {dir}; ls | |
function cdls() { cd $1; ls; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment