diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-03-18 09:44:00 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-03-18 09:44:00 -0700 |
commit | 211a836d5e2887083021d3e6d7f7f69fc52a69d5 (patch) | |
tree | a850e9a221c1ceb5d268e13bb64f42fbac3a0ac4 | |
parent | 750ca3854099771112a2420784220d86f7e97af6 (diff) | |
download | cppawk-211a836d5e2887083021d3e6d7f7f69fc52a69d5.tar.gz cppawk-211a836d5e2887083021d3e6d7f7f69fc52a69d5.tar.bz2 cppawk-211a836d5e2887083021d3e6d7f7f69fc52a69d5.zip |
Protect against sed mistaking argument as option.
-rwxr-xr-x | cppawk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ prepro_opts="-D__gawk__=1" # Blank out for generic or use __mawk__, etc. awk_file= awk_opts= tmp_file= -delhashbang="sed -e /^#!/d" +delhashbang="sed -e /^#!/d --" prepro_only= # functions |