Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.62 KB | None | 0 0
  1. # BSD licence
  2. # just put code in script, and put it in your ~/bin (if it is in your PATH, check that with
  3. # $ echo $PATH
  4. # ... or if it is not, put it into /usr/bin (you'll need su privileges for this)
  5. # use unique name in any case, like real_chrome_starter or whatever
  6. # chmod +x on file is must
  7.  
  8. #!/bin/bash
  9. clear
  10. google-chrome 2>/dev/null &
  11. echo -n "[Enter] for capital punishment execution"
  12. read
  13. killall -9 chrome
  14. echo "No pity. No mercy. No Regret." # Crusader: No Remorse, game for PC DOS [1995]. Few sequels was also planned, "No survivors" in betwen. Dev: Loose Cannon Productions, publisher Origin Systems
  15. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement