1 example for command
# Check to see if a 'ls' is a valid command
command -v ls
# Check to see what type of command 'ls' is (built-in, hashed, alias, etc.)
command -V ls
# Execute a given command.
command ls
# Check to see if a 'ls' is a valid command
command -v ls
# Check to see what type of command 'ls' is (built-in, hashed, alias, etc.)
command -V ls
# Execute a given command.
command ls