about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2021-01-30 15:30:43 -0600
committerCase Duckworth2021-01-30 15:30:43 -0600
commit0069fc381da639185bef7d0e451f2e2d14468722 (patch)
treeca64395297b071d380885a37f1958ed0c9a1218a
parentDon't exit on error (diff)
downloadunk-0069fc381da639185bef7d0e451f2e2d14468722.tar.gz
unk-0069fc381da639185bef7d0e451f2e2d14468722.zip
Don't force removal of O; it should remove on its own
saves 1b
-rwxr-xr-xunk2
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
2alias c=cat q=test e=echo 2alias c=cat q=test e=echo
3rm -rf O;mkdir -p O 3rm -r O;mkdir -p O
4q -f L||e '`c $F`'>L 4q -f L||e '`c $F`'>L
5q -d S&&cp -r S O/ 5q -d S&&cp -r S O/
6X(){ eval "$(e 'c<<ZZ';c "$@";e;e ZZ)";} 6X(){ eval "$(e 'c<<ZZ';c "$@";e;e ZZ)";}