Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. function help() {
  2. echo " "
  3. echo "Termlink is a command-line identi.ca client"
  4. echo " "
  5. echo "usage: "
  6. echo " 'termlink' without argument displays most recent timeline"
  7. echo " 'termlink post \"your new dent\"' posts new status"
  8. echo " 'termlink nuke <username>' blasts a user into oblivion"
  9. }
  10.  
  11. echo -en "\n`tput smso`Termlink ${version}${sgr0}"
  12. case "$1" in
  13. "nuke") shift; offender="$*"; nukeusr ;;
  14. "post") shift; msg="$*"; postmsg ;;
  15. "help") shift; help ;;
  16. "-h") shift; help ;;
  17. esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement