Compare commits

...

2 Commits
0.0.2 ... dev

Author SHA1 Message Date
28a87be9cb umount bug 2024-03-17 00:04:35 +01:00
eee602c785 exit while bug 2024-03-17 00:02:25 +01:00
2 changed files with 10 additions and 5 deletions

View File

@ -27,15 +27,18 @@ main() {
}
MOUNTBASEDIR=$(realpath ~/Remotes)
TARGET=${1};
while [ ${#} -gt 0 ]; do
case ${1} in
--help) showHelp; exit 0;;
-b | --bastion) BASTION="${2}"; shift; shift;;
-d | --mountbase) MOUNTBASEDIR=$(realpath "${2}"); shift; shift;;
*) shift;;
*)
TARGET=${1};
MOUNTDIR="${MOUNTBASEDIR}/${2}";
shift
shift
;;
esac
done
MOUNTDIR="${MOUNTBASEDIR}/${2}";
main

View File

@ -25,9 +25,11 @@ while [ ${#} -gt 0 ]; do
case ${1} in
--help) showHelp; exit 0;;
-d | --mountbase) MOUNTBASEDIR=$(realpath "${2}"); shift; shift;;
*) shift;;
*)
MOUNTDIR="${MOUNTBASEDIR}/${1}";
shift
;;
esac
done
MOUNTDIR="${MOUNTBASEDIR}/${2}";
main