diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/9c | 1 | ||||
-rwxr-xr-x | bin/bundle | 8 |
2 files changed, 5 insertions, 4 deletions
@@ -11,6 +11,7 @@ usegcc() -Wno-parentheses \ -Wno-missing-braces \ -Wno-switch \ + -Wno-comment \ -Wno-sign-compare \ " } @@ -2,8 +2,8 @@ echo '# To unbundle, run this file' for i do - echo 'echo '$i - echo 'sed ''s/.//'' >'$i' <<''//GO.SYSIN DD '$i'''' - sed 's/^/-/' $i - echo '//GO.SYSIN DD '$i + echo "echo $i" + echo "sed 's/.//' >$i <<'//GO.SYSIN DD $i'" + sed "s/^/-/" $i + echo "//GO.SYSIN DD $i" done |