diff --git a/scripts/prefix/bin/mvln b/scripts/prefix/bin/mvln index 94a8e06..71525bb 100755 --- a/scripts/prefix/bin/mvln +++ b/scripts/prefix/bin/mvln @@ -68,5 +68,5 @@ esac #echo $DEGUB # Step 4: eventually act upon gathered knowledge ############################### -ln $PATH1 $PATH2 # Hard link to new location (fast!) -ln -sf $PATH2 $PATH1 # Soft link back to old location +mv $PATH1 $PATH2 # Works across filesystems (fast enough!) +ln -s $PATH2 $PATH1 # Soft link back to old location