getopt.awk 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # getopt.awk --- Do C library getopt(3) function in awk
  2. #
  3. # Arnold Robbins, arnold@skeeve.com, Public Domain
  4. #
  5. # Initial version: March, 1991
  6. # Revised: May, 1993
  7. # External variables:
  8. # Optind -- index in ARGV of first nonoption argument
  9. # Optarg -- string value of argument to current option
  10. # Opterr -- if nonzero, print our own diagnostic
  11. # Optopt -- current option letter
  12. # Returns:
  13. # -1 at end of options
  14. # "?" for unrecognized option
  15. # <c> a character representing the current option
  16. # Private Data:
  17. # _opti -- index in multiflag option, e.g., -abc
  18. function getopt(argc, argv, options, thisopt, i)
  19. {
  20. if (length(options) == 0) # no options given
  21. return -1
  22. if (argv[Optind] == "--") { # all done
  23. Optind++
  24. _opti = 0
  25. return -1
  26. } else if (argv[Optind] !~ /^-[^:[:space:]]/) {
  27. _opti = 0
  28. return -1
  29. }
  30. if (_opti == 0)
  31. _opti = 2
  32. thisopt = substr(argv[Optind], _opti, 1)
  33. Optopt = thisopt
  34. i = index(options, thisopt)
  35. if (i == 0) {
  36. if (Opterr)
  37. printf("%c -- invalid option\n", thisopt) > "/dev/stderr"
  38. if (_opti >= length(argv[Optind])) {
  39. Optind++
  40. _opti = 0
  41. } else
  42. _opti++
  43. return "?"
  44. }
  45. if (substr(options, i + 1, 1) == ":") {
  46. # get option argument
  47. if (length(substr(argv[Optind], _opti + 1)) > 0)
  48. Optarg = substr(argv[Optind], _opti + 1)
  49. else
  50. Optarg = argv[++Optind]
  51. _opti = 0
  52. } else
  53. Optarg = ""
  54. if (_opti == 0 || _opti >= length(argv[Optind])) {
  55. Optind++
  56. _opti = 0
  57. } else
  58. _opti++
  59. return thisopt
  60. }
  61. BEGIN {
  62. Opterr = 1 # default is to diagnose
  63. Optind = 1 # skip ARGV[0]
  64. # test program
  65. if (_getopt_test) {
  66. while ((_go_c = getopt(ARGC, ARGV, "ab:cd")) != -1)
  67. printf("c = <%c>, Optarg = <%s>\n",
  68. _go_c, Optarg)
  69. printf("non-option arguments:\n")
  70. for (; Optind < ARGC; Optind++)
  71. printf("\tARGV[%d] = <%s>\n",
  72. Optind, ARGV[Optind])
  73. }
  74. }