diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1999-01-13 11:46:01 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1999-01-13 11:46:01 -0500 |
commit | a2e9461739dd215db90a5cee2c22a74e5f57d151 (patch) | |
tree | 20951eebb27137ae8f33e7231ac22511ce7671b1 /cfg_edit.sh | |
parent | 8bccca15371c1bee770ef51f389a915b4ef4e417 (diff) | |
download | lynx-snapshots-a2e9461739dd215db90a5cee2c22a74e5f57d151.tar.gz |
snapshot of project "lynx", label v2-8-2dev_13
Diffstat (limited to 'cfg_edit.sh')
-rwxr-xr-x | cfg_edit.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cfg_edit.sh b/cfg_edit.sh new file mode 100755 index 00000000..6206c6c4 --- /dev/null +++ b/cfg_edit.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# Invoked from cfg_defs.sh as a filter +# Strip leading and trailing whitespace +# Escape any iternal '\' +# Escape any iternal '"' +# Entify any iternal '&', '<' or '>' +# Append a '=' if none present' +# Break into two strings at '=' +# Prefix ' { "' and suffix '" },' +sort | +sed -e 's!^[ ]*!!' -e 's![ ]*$!!' \ + -e 's!\\!\\\\!g' \ + -e 's!"!\\"!g' \ + -e 's!&!\&!g' -e 's!<!\<!g' -e 's!>!\>!g' \ + -e 's!^[^=]*$!&=!' \ + -e 's!=!", "!' \ + -e 's!^! { "!' -e 's!$!" },!' |