9 lines
227 B
Bash
Executable File

#!/bin/bash
echo "Sync Backup!";
if [ $# -eq 0 ]; then
echo "Usage: sync.sh <Backup disk name> <Sync target disk root path> [Sync source disk root path]";
exit 2;
fi
./sync-btime.sh i "$1" "$2" "$3" "ikwid";
return $?;