Update: manager.sh

This commit is contained in:
mollusk 2021-01-30 11:38:45 -07:00
parent 5962d70740
commit f0da055538

View File

@ -1,5 +1,17 @@
#!/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
@ -14,3 +26,16 @@ fi
echo "Moving files from ${remoteDir} to $(pwd)/Diablo II"
cp "${remoteDir}"/* "$(pwd)"/"Diablo II"
}
case "${1}" in
-d2)
mv_d2
;;
*)
help
;;
esac