diff options
author | Case Duckworth | 2021-01-30 15:30:43 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-30 15:30:43 -0600 |
commit | 0069fc381da639185bef7d0e451f2e2d14468722 (patch) | |
tree | ca64395297b071d380885a37f1958ed0c9a1218a | |
parent | Don't exit on error (diff) | |
download | unk-0069fc381da639185bef7d0e451f2e2d14468722.tar.gz unk-0069fc381da639185bef7d0e451f2e2d14468722.zip |
Don't force removal of O; it should remove on its own
saves 1b
-rwxr-xr-x | unk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unk b/unk index 4b2172e..cd139d5 100755 --- a/unk +++ b/unk | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | alias c=cat q=test e=echo | 2 | alias c=cat q=test e=echo |
3 | rm -rf O;mkdir -p O | 3 | rm -r O;mkdir -p O |
4 | q -f L||e '`c $F`'>L | 4 | q -f L||e '`c $F`'>L |
5 | q -d S&&cp -r S O/ | 5 | q -d S&&cp -r S O/ |
6 | X(){ eval "$(e 'c<<ZZ';c "$@";e;e ZZ)";} | 6 | X(){ eval "$(e 'c<<ZZ';c "$@";e;e ZZ)";} |