ln now mv

main
Nicholas Hope 2022-11-03 22:42:13 -04:00
parent d96bb7e1c8
commit 81942f47f6
1 changed files with 2 additions and 4 deletions

View File

@ -6,7 +6,6 @@ OIFS="$IFS"
IFS=$'\n'
MV="mv"
LN="ln"
[[ -d ~/apt_stuff ]] || mkdir ~/apt_stuff
@ -24,14 +23,13 @@ for file in $(
ls -1 |
egrep -vi \(init\|license\|readme\|git\)
); do
${LN} "$file" "~/.cyber_bin/$file"
${MV} "$file" "~/.cyber_bin/$file"
done
[[ ! -f ~/.bashrc ]] && ${LN} ~/.bash_profile ~/.bashrc
# push changes made to PATH
hash -r
source ~/.bash_profile
bash dostuff.sh
# reset internal field separator
IFS="$OIFS"