Skip to content

Instantly share code, notes, and snippets.

@lightyrs
Created May 23, 2012 23:11
Show Gist options
  • Save lightyrs/2778426 to your computer and use it in GitHub Desktop.
Save lightyrs/2778426 to your computer and use it in GitHub Desktop.
More aliases
# 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