Guest User

Untitled

a guest
Jul 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. EPREFIX=$HOME/Library/Gentoo
  4. EMERGE=$EPREFIX/usr/bin/emerge
  5.  
  6. GROWL_NOTIFY=/usr/local/bin/growlnotify
  7.  
  8. ARGS=$@
  9.  
  10. $EMERGE $ARGS
  11. STATUS=$?
  12.  
  13. if [ $STATUS = "0" ]; then
  14. MESSAGE="success!"
  15. else
  16. MESSAGE="failure..."
  17. fi
  18.  
  19. $GROWL_NOTIFY -t "emerge $ARGS" -m $MESSAGE
Add Comment
Please, Sign In to add comment