removed stuff

main
Nicholas Hope 2022-11-03 22:45:44 -04:00
parent 81942f47f6
commit 1921d665c6
1 changed files with 3 additions and 4 deletions

View File

@ -7,15 +7,15 @@ IFS=$'\n'
MV="mv"
[[ -d ~/apt_stuff ]] || mkdir ~/apt_stuff
${MV} dostuff.sh ~
if [[ "$PATH" != *"~/.cyber_bin"* ]]; then
# if script not run yet
PATH="$PATH:~/.cyber_bin"
mkdir ../.cyber_bin
mkdir ~/.cyber_bin
fi
for file in $(ls -A1 .bash_*); do
for file in "$(ls -A1 .bash_*)"; do
${MV} "$file" ~
done
@ -29,7 +29,6 @@ done
# push changes made to PATH
hash -r
source ~/.bash_profile
bash dostuff.sh
# reset internal field separator
IFS="$OIFS"