added dostuff.sh to blocklist for filemoves

main
Nicholas Hope 2022-11-03 23:10:00 -04:00
parent 341bb1a8bc
commit d45ca91c33
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,6 @@ IFS=$'\n'
MV="mv"
${MV} dostuff.sh ~
[[ -d ~/cyber_bin ]] || mkdir ~/cyber_bin
if [[ "$PATH" != *"~/cyber_bin"* ]]; then
@ -20,9 +19,10 @@ for file in $(ls -A1 dot_bash_*); do
${MV} "$file" ~/"$newname"
done
${MV} dostuff.sh ~
for file in $(
ls -1 |
egrep -vi \(init\|license\|readme\|git\)
egrep -vi \(init\|license\|readme\|git\|dostuff\)
); do
${MV} "$file" "~/cyber_bin/$file"
done