///
Considere o fragmento de script abaixo:
#!/bin/sh
echo -n 'Nome do arquivo a ser verificado: '
read
if [ $REPLY ]
then
arq=$REPLY
if [ -e $arq ]; then
echo 'o arquivo existe'
if [ -r $arq ]; then
echo 'o arquivo pode ser lido'
else
echo 'o arquivo não pode ser lido'
fi
...É INCORRETO afirmar: