From: Kevin Day Date: Thu, 28 May 2026 22:37:20 +0000 (-0500) Subject: Update: Script to better handle white spaces. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;p=initrd_init Update: Script to better handle white spaces. The `"${@}"` will expand spaces correctly into each parameter. The double quotes are requires as `${@}` will not work as expected. --- diff --git a/mount_init.sh b/mount_init.sh index e6fbffb..31e050d 100644 --- a/mount_init.sh +++ b/mount_init.sh @@ -159,4 +159,4 @@ process_parameters(){ } -process_parameters $1 $2 +process_parameters "${@}"