]> Kevux Git Server - initrd_init/commitdiff
Update: Script to better handle white spaces. development
authorKevin Day <Kevin@kevux.org>
Thu, 28 May 2026 22:37:20 +0000 (17:37 -0500)
committerKevin Day <Kevin@kevux.org>
Thu, 28 May 2026 22:37:20 +0000 (17:37 -0500)
The `"${@}"` will expand spaces correctly into each parameter.
The double quotes are requires as `${@}` will not work as expected.

mount_init.sh

index e6fbffb2bfda29bd255d3c00c9a50592b1aaf42b..31e050d363d38cb485c8d95d0773925a27698aff 100644 (file)
@@ -159,4 +159,4 @@ process_parameters(){
 }
 
 
 }
 
 
-process_parameters $1 $2
+process_parameters "${@}"