41 lines
623 B
Bash
Executable File
41 lines
623 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
help(){
|
|
echo """
|
|
|
|
"${0}" [options]
|
|
|
|
-d2 Move Diablo II save game files
|
|
|
|
"""
|
|
}
|
|
|
|
mv_d2(){
|
|
remoteDir=${HOME}/diablo/drive_c/users/mollusk/"Saved Games"/"Diablo II"
|
|
echo "${remoteDir}"
|
|
if [[ ! -d ./"Diablo II" ]];then
|
|
echo "Local save directory does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -d "${remoteDir}" ]];then
|
|
echo "Remote directory does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Moving files from ${remoteDir} to $(pwd)/Diablo II"
|
|
cp "${remoteDir}"/* "$(pwd)"/"Diablo II"
|
|
}
|
|
|
|
case "${1}" in
|
|
|
|
-d2)
|
|
mv_d2
|
|
;;
|
|
|
|
*)
|
|
help
|
|
;;
|
|
esac
|
|
|