mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
275 B
5 lines
275 B
5 years ago
|
#!/bin/sh
|
||
|
[ -z "$1" ] && echo "usage: rotdir regex 2>&1" && exit 1
|
||
|
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; }"
|