shellquote.awk 472 B

12345678910111213141516171819202122
  1. # shell_quote --- quote an argument for passing to the shell
  2. #
  3. # Michael Brennan
  4. # brennan@madronabluff.com
  5. # September 2014
  6. function shell_quote(s, # parameter
  7. SINGLE, QSINGLE, i, X, n, ret) # locals
  8. {
  9. if (s == "")
  10. return "\"\""
  11. SINGLE = "\x27" # single quote
  12. QSINGLE = "\"\x27\""
  13. n = split(s, X, SINGLE)
  14. ret = SINGLE X[1] SINGLE
  15. for (i = 2; i <= n; i++)
  16. ret = ret QSINGLE SINGLE X[i] SINGLE
  17. return ret
  18. }