Skip to content

Instantly share code, notes, and snippets.

@plainas
Created April 22, 2015 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plainas/1ab7df93444024d2724d to your computer and use it in GitHub Desktop.
Save plainas/1ab7df93444024d2724d to your computer and use it in GitHub Desktop.
iadd ikill ishow
#######################################################
# iadd
#######################################################
#!/bin/sh
git ls-files -m |percol|xargs git add
#######################################################
# ikill
#######################################################
#!/bin/sh
ps aux | percol | awk '{ print $2 }' | xargs kill
#######################################################
# ishow
#######################################################
#!/bin/sh
git log --oneline|percol |awk ' {print $1}'|xargs git show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment