From 81942f47f6296bddf2e138e0eaad2193e718a877 Mon Sep 17 00:00:00 2001 From: nick Date: Thu, 3 Nov 2022 22:42:13 -0400 Subject: [PATCH] ln now mv --- init.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/init.sh b/init.sh index d866a98..179f794 100644 --- a/init.sh +++ b/init.sh @@ -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" \ No newline at end of file