aboutsummaryrefslogtreecommitdiff
path: root/mvln
blob: 17ff47cac78296db89fb8e16c13e5974e1973bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
#
# Move a file but keep a symlink behind.
#
# See http://www.linuxquestions.org/questions/linux-newbie-8/script-to-move-old-files-create-symbolic-link-728618/
#     http://lifehacker.com/5270634/move-files-without-breaking-stuff
#     https://stackoverflow.com/questions/9251818/bash-move-file-directory-and-create-a-link-of-it
#     http://serverfault.com/questions/8108/move-a-file-and-leave-a-soft-link-behind

# Check
if [ ! -e "$1" ]; then
  echo "File not found: $1"
  exit 1
fi

# Proceed
mkdir -p `dirname "$2"`
mv "$1" "$2" && ln -s "$2/`dirname $1`" "$1"