mirror of
https://tildegit.org/tomasino/pb.git
synced 2024-11-20 03:25:54 +01:00
fixing option arg references
This commit is contained in:
parent
903b7d1199
commit
4024fead8d
7
pb
7
pb
@ -62,24 +62,19 @@ while true; do
|
||||
case "$1" in
|
||||
-h)
|
||||
flag_help=1
|
||||
shift
|
||||
;;
|
||||
-v)
|
||||
flag_version=1
|
||||
shift
|
||||
;;
|
||||
-f)
|
||||
flag_file=1
|
||||
shift
|
||||
;;
|
||||
-s)
|
||||
shift
|
||||
ENDPOINT="$1"
|
||||
shift
|
||||
;;
|
||||
-x)
|
||||
flag_shortlist=1
|
||||
shift
|
||||
;;
|
||||
--)
|
||||
shift
|
||||
@ -89,13 +84,13 @@ while true; do
|
||||
die "Internal error: $1" 3
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ -z "$data" ]; then
|
||||
data="$*"
|
||||
fi
|
||||
|
||||
|
||||
if [ ${flag_version} -gt 0 ]; then
|
||||
printf "%s\\n" "${version}"
|
||||
die "" 0
|
||||
|
Loading…
Reference in New Issue
Block a user