rotdir now actually works as intended
This commit is contained in:
@@ -1,8 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
[ -z "$1" ] && echo "usage: rotdir regex 2>&1" && exit 1
|
[ -z "$1" ] && echo "usage: rotdir regex 2>&1" && exit 1
|
||||||
ed -s <<EOF
|
base="$(basename $1)"
|
||||||
r !find "$PWD" -maxdepth 1
|
ls "$PWD" | awk "BEGIN { lines = \"\"; m = 0; } /^$base$/ { m = 1; } { if (!m) { if (lines) { lines = lines\"\n\"; } lines = lines\"\"\$0; } else { print \$0; } } END { print lines; }"
|
||||||
g/$1/m0
|
|
||||||
,p
|
|
||||||
Q
|
|
||||||
EOF
|
|
||||||
|
|||||||
Reference in New Issue
Block a user