diff options
author | rmax <rmax> | 2004-11-19 10:22:38 (GMT) |
---|---|---|
committer | rmax <rmax> | 2004-11-19 10:22:38 (GMT) |
commit | d6f7124686795a04c2386fbe53bd139d88cfde18 (patch) | |
tree | 2832a735e0ede9cdc5b480ac8b42e1df59d68092 /unix | |
parent | a2e188df5dade4f6a957f4ec87545a2f6c97f0e3 (diff) | |
download | tk-d6f7124686795a04c2386fbe53bd139d88cfde18.zip tk-d6f7124686795a04c2386fbe53bd139d88cfde18.tar.gz tk-d6f7124686795a04c2386fbe53bd139d88cfde18.tar.bz2 |
Classic sed doesn't support | in REs.
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/installManPage | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/unix/installManPage b/unix/installManPage index 4157d26..93fd925 100755 --- a/unix/installManPage +++ b/unix/installManPage @@ -25,10 +25,12 @@ test -z "$S" && S="$DIR/" # /^\\.SH NAME/{ ;# Look for a line, that starts with .SH NAME # s/^.*$// ;# Delete the content of this line from the buffer # n ;# Read next line -# s/,\|\\\ //g ;# Remove all commas +# s/,//g ;# Remove all commas ... +# s/\\\ //g ;# .. and backslash-escaped spaces. # s/ \\\-.*// ;# Delete from \- to the end of line # p ;# print the result # q ;# exit +# } # # Backslashes are trippled in the sed script, because it is in # backticks which don't pass backslashes literally. @@ -39,7 +41,8 @@ NAMES=`sed -n ' /^\\.SH NAME/{ s/^.*$// n - s/,\|\\\ //g + s/,//g + s/\\\ //g s/ \\\-.*// p q |