4
votes
is bash getopts function destructive to the command-line options?
Yes, just reset OPTIND afterwards.
#!/bin/bash
set -- -1
while getopts 1 opt; do
case "${opt}" in
1) echo "Worked!";;
*) exit 1;
esac
done
OPTIND=1
set -- …
0
votes
Find out if a command exists on POSIX system
POSIX does say, “If a command is not found, the exit status shall be 127.” So you could do
<command>
if [ "${?}" = 127 ]; then
<handle not found>
fi
…
1
vote
Executing commands containing space in bash
You can replace your script with the command
sh cmd
The shell’s job is to read commands and run them! If you want output/progress indicators, run the shell in verb …
