Some binaries in Unix-Linux systems like ping or mount have a long argument. For example if we write ping -h in the terminal, one of the options is:
Usage: ping [-aAbBdDfhLnOqrRUvV64]
Is this long set of characters really an argument?
Some binaries in Unix-Linux systems like ping or mount have a long argument. For example if we write ping -h in the terminal, one of the options is:
Usage: ping [-aAbBdDfhLnOqrRUvV64]
Is this long set of characters really an argument?
No, this is an abbreviated way of listing all the possible single-letter options: -a, -A, -b, etc. See the ping manpage for details (for better results, run man ping on your own system — that will show the documentation for the version you have installed).