Files
Ilya Shpigor 81254606dd Minor fixes
2021-03-14 12:22:29 +01:00

18 lines
240 B
Bash

#!/bin/bash
option="$1"
declare -A utils=(
["-b"]="bsdtar"
["--bsdtar"]="bsdtar"
["-t"]="tar"
["--tar"]="tar")
if [[ -z "$option" || ! -v utils["$option"] ]]
then
echo "Invalid option"
exit 1
fi
${utils["$option"]} "${@:2}"