mirror of
https://github.com/ellysh/bash-programming-from-scratch.git
synced 2026-01-26 07:43:42 +00:00
19 lines
188 B
Bash
19 lines
188 B
Bash
#!/bin/bash
|
|
|
|
utility="$1"
|
|
|
|
case "$utility" in
|
|
"-b"|"--bsdtar")
|
|
bsdtar "${@:2}"
|
|
;;
|
|
|
|
"-t"|"--tar")
|
|
tar "${@:2}"
|
|
;;
|
|
|
|
*)
|
|
echo "Invalid option"
|
|
exit 1
|
|
;;
|
|
esac
|