style
This commit is contained in:
parent
643886a7c9
commit
08a9db0554
1 changed files with 1 additions and 9 deletions
|
@ -1,16 +1,8 @@
|
|||
#!/bin/sh
|
||||
if [ -z "$1" ]; then
|
||||
echo usage: rotdir regex 2>&1
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
[ -z "$1" ] && echo "usage: rotdir regex 2>&1" && exit 1
|
||||
ed -s <<EOF
|
||||
# Read in all files in the current dir
|
||||
r !find "$PWD" -maxdepth 1
|
||||
# Search all lines for regex, move to top
|
||||
g/$1/m0
|
||||
# Print all lines
|
||||
,p
|
||||
# Force quit
|
||||
Q
|
||||
EOF
|
||||
|
|
Loading…
Reference in a new issue