Add portable getLastArgument()
This commit is contained in:
parent
5053f51bfb
commit
8d9a3215bf
|
@ -1,3 +1,4 @@
|
|||
dotfiles/.gitconfig
|
||||
dotfiles/.gitconfig-work
|
||||
shellcheck/
|
||||
shellcheck/
|
||||
.shellcheckrc
|
||||
|
|
|
@ -27,7 +27,7 @@ displayDialogBox() {
|
|||
}
|
||||
|
||||
useDialog() {
|
||||
str="${@: -1}"; inputbox=false
|
||||
str=$(getLastArgument "$@"); inputbox=false
|
||||
if [ "$str" = "VALUES" ]; then
|
||||
argc="$#"; i=1
|
||||
for item in "$@"; do
|
||||
|
@ -54,7 +54,7 @@ useDialog() {
|
|||
}
|
||||
|
||||
useWhiptail() {
|
||||
str="${@: -1}"; inputbox=false; infobox=false
|
||||
str=$(getLastArgument "$@"); inputbox=false; infobox=false
|
||||
if [ "$str" = "VALUES" ]; then
|
||||
argc="$#"; i=1
|
||||
for item in "$@"; do
|
||||
|
@ -84,6 +84,12 @@ useWhiptail() {
|
|||
fi
|
||||
}
|
||||
|
||||
getLastArgument() {
|
||||
local i=0
|
||||
for i; do :; done
|
||||
echo "$i"
|
||||
}
|
||||
|
||||
formatOptions() {
|
||||
options=(); found=false
|
||||
for item in "$@"; do
|
||||
|
|
Loading…
Reference in New Issue