mv is more flexible than ln
This commit is contained in:
parent
d4d3289216
commit
1f176dd805
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue