Lines Matching full:single
8 # Do a bash-style escape of all single quotes in the buffer and return the result.
10 …# In bash, if you wish to have a single quote (i.e. apostrophe) inside single quotes, you must esc…
23 # buffer The string whose single quotes are to be escaped.
33 # Convert a single-quoted string to a curly brace-quoted string and return the result.
35 # This procedure can help in converting bash expressions, which are quoted with single quotes, to
37 # preserve a bash single quote escape sequence: '\''
59 # In a bash string "'\''" is an escaped quote which we wish to convert to a single quote.
95 # Convert a curly brace-quoted string to a single-quoted string and return the result.
98 …# bash expressions which are quoted with single quotes. This procedure will first convert single …
99 # the bash escaped single quote sequence: '\''
102 …# buffer The string whose curly braces are to be converted to single quot…