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