Se você quiser iwconfig
, a solução de longo prazo mais sustentável (digamos, se você trocasse o gerenciador de pacotes ou a distribuição) é verificar o binário que você realmente deseja usar. Você pode fazer isso POSIXly usando command -v
:
if command -v iwconfig >/dev/null; then
echo 'iwconfig present'
else
echo 'iwconfig absent'
fi
De help command
no bash:
command: command [-pVv] command [arg ...]
Execute a simple command or display information about commands.
Runs COMMAND with ARGS suppressing shell function lookup, or display
information about the specified COMMANDs. Can be used to invoke commands
on disk when a function with the same name exists.
Options:
[...]
- -v print a description of COMMAND similar to the 'type' builtin