3 lines
103 B
Bash
3 lines
103 B
Bash
|
|
# TODO: finish with all metacharacters needing escapes
|
||
|
|
sedify() { sed 's/\([$\/]\)/\\\1/g' <<<"$1" ; }
|