| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #!/bin/bash
- # info: move file
- # options: USER SRC_FILE DST_FLE
- #
- # The function moved file or directory on the file system. This function
- # can also be used to rename files just like normal mv command.
- user=$1
- src_file=$2
- dst_file=$3
- # Checking arguments
- if [ -z "$dst_file" ]; then
- echo "Usage: USER SRC_FILE DST_FILE"
- exit 1
- fi
- # Checking vesta user
- if [ ! -e "$VESTA/data/users/$user" ]; then
- echo "Error: vesta user $user doesn't exist"
- exit 3
- fi
- # Checking user homedir
- homedir=$(grep "^$user:" /etc/passwd | cut -f 6 -d :)
- if [ -z $homedir ]; then
- echo "Error: user home directory doesn't exist"
- exit 12
- fi
- # Checking source file
- if [ ! -f "$src_file" ]; then
- echo "Error: source file $src_file doesn't exist"
- exit 3
- fi
- # Checking source path
- rpath=$(readlink -f "$src_file")
- if [ -z "$(echo $rpath |egrep "^/tmp|^$homedir")" ]; then
- echo "Error: invalid source path $src_file"
- exit 2
- fi
- # Checking destination path
- rpath=$(readlink -f "$dst_file")
- if [ -z "$(echo $rpath |egrep "^/tmp|^$homedir")" ]; then
- echo "Error: invalid destination path $dst_file"
- exit 2
- fi
- # Moving file
- sudo -u $user mv "$src_file" "$dst_file" >/dev/null 2>&1
- if [ $? -ne 0 ]; then
- echo "Error: file $src_file was not moved"
- exit 3
- fi
- # Exiting
- exit
|