Fix a copy/paste error within a comment.

This commit is contained in:
dteske 2013-06-02 23:08:21 +00:00
parent db6026d0e2
commit 12134e26ca

View File

@ -253,7 +253,7 @@ f_str2varname()
#
# foo="abc'123"
# f_shell_escape "$foo" bar # bar=[abc'\''123]
# eval echo \'$foo\' # produces abc'123
# eval echo \'$bar\' # produces abc'123
#
# This is helpful when processing an argument list that has to retain its
# escaped structure for later evaluations.