Use "$@" for expansion calls rather than manually listing argument numbers

This commit is contained in:
Miles Alan 2020-06-27 20:19:47 -05:00
parent d4a6bacec0
commit cef4de2af0
7 changed files with 8 additions and 8 deletions

View file

@ -98,5 +98,5 @@ recordmenu() {
if [ -z "$1" ]; then
recordmenu
else
"$1" "$2" "$3"
"$@"
fi