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"`
···4455# errcho - a variant of echo that prints to stderr
66errcho() {
77- >&2 echo $@
77+ >&2 echo "$@"
88}
991010# subcommands
···49495050case "$VERB" in
5151 eject)
5252- eject $@
5252+ eject "$@"
5353 ;;
5454 *)
5555 errcho "diskutil: did not recognize verb \"$VERB\"; type \"diskutil\" for a list"