about summary refs log tree commit diff stats
path: root/scripts/cfg_edit.sh
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2006-01-23 01:26:00 -0500
committerThomas E. Dickey <dickey@invisible-island.net>2006-01-23 01:26:00 -0500
commit04a316621e7163aa1d3a747c47844da55c6aa4d6 (patch)
tree89da810392c92dcde38dafe5313b8602b636b219 /scripts/cfg_edit.sh
parent01876e39ab4775cc04d1fdc8e491fe2e7de9c1a3 (diff)
downloadlynx-snapshots-04a316621e7163aa1d3a747c47844da55c6aa4d6.tar.gz
snapshot of project "lynx", label v2-8-6dev_17
Diffstat (limited to 'scripts/cfg_edit.sh')
-rwxr-xr-xscripts/cfg_edit.sh17
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!&!\&amp;!g' -e 's!<!\&lt;!g' -e 's!>!\&gt;!g' \
+	-e 's!^[^=]*$!&=!' \
+	-e 's!=!",	"!'     \
+	-e 's!^!	{ "!' -e 's!$!" },!'