11.04.2013 Views

Guida avanzata di scripting Bash - Portale Posta DMI

Guida avanzata di scripting Bash - Portale Posta DMI

Guida avanzata di scripting Bash - Portale Posta DMI

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

-lt<br />

-le<br />

<<br />

<br />

>=<br />

=<br />

è minore <strong>di</strong><br />

if [ "$a" -lt "$b" ]<br />

è minore <strong>di</strong> o uguale a<br />

if [ "$a" -le "$b" ]<br />

è minore <strong>di</strong> (tra doppie parentesi)<br />

(("$a" < "$b"))<br />

è minore <strong>di</strong> o uguale a (tra doppie parentesi)<br />

(("$a" "$b"))<br />

è maggiore <strong>di</strong> o uguale a (tra doppie parentesi)<br />

(("$a" >= "$b"))<br />

confronto <strong>di</strong> stringhe<br />

è uguale a<br />

Capitolo 7. Verifiche<br />

75

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!