if a value of a key on the kernel command line includes wildcards, these
would be expanded.
E.g., if you have "key=/dev/sd*" the value would be substituted with
"/dev/sda /dev/sda1 /dev/sda2" instead of returning "/dev/sd*"
fi
done
if [ -n "$_val" ]; then
- [ "x$_doecho" != "x" ] && echo $_val;
+ [ "x$_doecho" != "x" ] && echo "$_val";
return 0;
fi
return 1;
shift
done
if [ -n "$_val" ]; then
- echo -n $_val
+ echo -n "$_val"
[ "$RD_DEBUG" = "yes" ] && set -x
return 0
fi