Can someone help me understand why
is not respecting the * wildcard? Executing it in Terminal results in the command's "usage" info being shown.
If I escape it as
It responds as expected with
I also tried using the ? wildcard and it is not recognized either.
This on a Mac Pro running 10.8.5, if it matters.
Thanks
Code:
mount -dvuwo noatime /Volumes/*
is not respecting the * wildcard? Executing it in Terminal results in the command's "usage" info being shown.
Code:
usage: mount [-dfruvw] [-o options] [-t external_type] special node
mount [-adfruvw] [-t external_type]
mount [-dfruvw] special | node
If I escape it as
Code:
mount -dvuwo noatime /Volumes/\*
It responds as expected with
Code:
unknown special file or file system *
I also tried using the ? wildcard and it is not recognized either.
This on a Mac Pro running 10.8.5, if it matters.
Thanks