diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -77,6 +77,12 @@ gpg_unescape() { sed 's/\\x3a/:/g' } +# convert nasty chars into gpg-friendly form in pipeline +# FIXME: escape everything, not just colons! +gpg_escape() { + sed 's/:/\\x3a/g' +} + # remove all lines with specified string from specified file remove_line() { local file |