Files
bash-programming-from-scratch/manuscript/resources/code/BashScripting/tar-wrapper.sh
2020-10-17 10:22:39 +02:00

19 lines
224 B
Bash

#!/bin/bash
utility="$1"
case "$utility" in
"-b"|"--bsdtar")
bsdtar "${@:2}"
;;
"-t"|"--tar")
tar "${@:2}"
;;
*)
echo "Указана недопустимая опция"
exit 1
;;
esac