Newer
Older
tpromptuser / TODO
@tundra tundra on 10 Apr 2014 1 KB *** empty log message ***
  1. Subject: Re: ANN: getkey ('choice.exe' clone for FreeBSD)
  2. Date: Mon, 7 Apr 2014 02:48:35 +0000 (UTC)
  3. From: Mike Sanders <mike@taco-shack.cow>
  4. Organization: FreeBSD
  5. Newsgroups: comp.unix.bsd.freebsd.misc
  6. References: <lhqlh0$lgm$1@news.albasani.net> <gi891b-pl8.ln1@ozzie.tundraware.com>
  7.  
  8. Tim Daneliuk <tundra@tundraware.com> wrote:
  9.  
  10. > Yeah, this is a popular thing to implement. Here's my take:
  11. >
  12. > http://www.tundraware.com/Software/tpromptuser/
  13.  
  14. Question... (not to sound like a party pooper here,
  15. its a very nifty script). Why arent you trapping interupts
  16. like SIGINT (CONTROL+C)? It would really help your script...
  17.  
  18. Here's an example:
  19.  
  20. #!/bin/sh -e
  21.  
  22. <<COMMENT
  23.  
  24. error-level table:
  25.  
  26. 0 Normal
  27. 1 SIGHUP
  28. 2 SIGINT
  29. 15 SIGTERM
  30.  
  31. COMMENT
  32.  
  33. trap 'graceful_exit' 1 2 15
  34.  
  35. graceful_exit() {
  36.  
  37. echo 'put cleanup routines here...'
  38. exit 1
  39.  
  40. }
  41.  
  42. echo 'invoke control+c for example'
  43.  
  44. sleep 10
  45.  
  46. echo 'script exited normally'
  47.  
  48. # eof
  49. > A more widely used tool is the 'dialog' package:
  50. Aye, a really great tool for gui-ified scripts, I use it too:
  51.  
  52. <http://freebsd.hypermart.net/glyphs/topic-dialog.png>
  53.  
  54. --
  55. Mike Sanders
  56. www: http://freebsd.hypermart.net
  57. gpg: 0xD94D4C13
  58.