Created
April 22, 2015 01:23
-
-
Save plainas/1ab7df93444024d2724d to your computer and use it in GitHub Desktop.
iadd ikill ishow
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
####################################################### | |
# 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