This is an old revision of the document!
$ ls /bin
$ echo $?
$ ls /noexistfile
$ echo $?
test "$1" = "" && \
{
echo usage:
echo /root/ex1.sh url
exit 1
}
$ f=/etc/passwd $ ls $f >/dev/null 2>&1 && echo Yes || echo No $ f=virus.zip $ clamdscan $f || rm $f test -e $f && (clamdscan $f >/dev/null 2>&1 || rm -v $f)