diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-05-02 17:43:25 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2019-05-02 17:43:25 -0400 |
| commit | ed5b3d49ab6283f38ce4a2367622cb3c199d9a0a (patch) | |
| tree | 25c91d24f713b3db5c41a9d06b142609d8e54a74 /.scripts/tools | |
| parent | cc9554422142db79e71ed6cf31ce2f02c33be2d1 (diff) | |
| download | eibhear-ed5b3d49ab6283f38ce4a2367622cb3c199d9a0a.tar.gz eibhear-ed5b3d49ab6283f38ce4a2367622cb3c199d9a0a.tar.zst eibhear-ed5b3d49ab6283f38ce4a2367622cb3c199d9a0a.zip | |
rotdir now actually works as intended
Diffstat (limited to '.scripts/tools')
| -rwxr-xr-x | .scripts/tools/rotdir | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.scripts/tools/rotdir b/.scripts/tools/rotdir index c04666d..e7103db 100755 --- a/.scripts/tools/rotdir +++ b/.scripts/tools/rotdir @@ -1,8 +1,4 @@ #!/bin/sh [ -z "$1" ] && echo "usage: rotdir regex 2>&1" && exit 1 -ed -s <<EOF -r !find "$PWD" -maxdepth 1 -g/$1/m0 -,p -Q -EOF +base="$(basename $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; }" |
