Sto iniziando con bash e ho trovato quanto segue:
if test $first -lt $second
then
echo $first is lower than $second
else
if test $first -gt $second
then
echo $first is higher than $second
else
echo $first and $second are equals
fi
fi
Per leggere la sceneggiatura ed eseguirla, so cosa fa, ma non a cosa servono -lt e -gt.
Qualcuno può dirmi come si chiama quel tipo di "strumento" e cosa fanno (-lt e -gt)? Grazie!
echo
dichiarazioni nel codice rispondono alla tua domanda.