diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2006-01-23 01:26:00 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2006-01-23 01:26:00 -0500 |
commit | 04a316621e7163aa1d3a747c47844da55c6aa4d6 (patch) | |
tree | 89da810392c92dcde38dafe5313b8602b636b219 /scripts/cfg_edit.sh | |
parent | 01876e39ab4775cc04d1fdc8e491fe2e7de9c1a3 (diff) | |
download | lynx-snapshots-04a316621e7163aa1d3a747c47844da55c6aa4d6.tar.gz |
snapshot of project "lynx", label v2-8-6dev_17
Diffstat (limited to 'scripts/cfg_edit.sh')
-rwxr-xr-x | scripts/cfg_edit.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/cfg_edit.sh b/scripts/cfg_edit.sh new file mode 100755 index 00000000..6206c6c4 --- /dev/null +++ b/scripts/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!$!" },!' |