2
votes
Quoting command-line arguments in shell scripts
bash’s arrays are unportable but the only sane way to handle argument lists in shell
The number of arguments is in ${#}
Bad stuff will happen with your script if there are f …
1
vote
Checking Unix script ftp return codes.
Install the ncftp package. It comes with ncftpget and ncftpput which will each attempt to upload/download a single file, and return with a descriptive error code if there is a problem. See the “Dia …
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
…
