Compare commits

..

No commits in common. "dev" and "0.0.1" have entirely different histories.
dev ... 0.0.1

2 changed files with 3 additions and 10 deletions

View File

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

View File

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