this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Quote `$@` in diskutil script This prevents the shell from expanding arguments into more arguments e.g. it prevents it from turning `"foo bar"` into `"foo" "bar"`

+2 -2
+2 -2
src/diskutil/diskutil
··· 4 4 5 5 # errcho - a variant of echo that prints to stderr 6 6 errcho() { 7 - >&2 echo $@ 7 + >&2 echo "$@" 8 8 } 9 9 10 10 # subcommands ··· 49 49 50 50 case "$VERB" in 51 51 eject) 52 - eject $@ 52 + eject "$@" 53 53 ;; 54 54 *) 55 55 errcho "diskutil: did not recognize verb \"$VERB\"; type \"diskutil\" for a list"