added example script

This commit is contained in:
germedeb 2022-07-07 17:50:56 -03:00
parent 41e20ecc93
commit d36d42f883
1 changed files with 13 additions and 0 deletions

13
example.sh Executable file
View File

@ -0,0 +1,13 @@
#! /bin/bash
case "$@" in *--opt-1*)
echo OPT_1
esac
case "$@" in *--opt-2*)
echo OPT_2
esac
case "$@" in *--opt-3*)
echo OPT_3
esac