From bc0fa578036583231edb567b328b4f69ce6860fe Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Mon, 20 Feb 2012 02:08:17 -0500 Subject: snapshot of project "lynx", label v2-8-8dev_11 --- scripts/cfg_edit.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 scripts/cfg_edit.sh (limited to 'scripts/cfg_edit.sh') 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!^[^=]*$!&=!' \ + -e 's!=!", "!' \ + -e 's!^! { "!' -e 's!$!" },!' -- cgit 1.4.1-2-gfad0