#!/bin/bashprintf"Enter your name: "readNAME
echo"Hello $NAME !"printf"Please, enter a number: "readNUMBER
if(("$NUMBER"<"0"));thenecho"$NUMBER is negative !"elif(("$NUMBER"=="0"));thenecho"$NUMBER is null !"elseecho"$NUMBER is positive !"fi
La clause IF..ELSE
#!/bin/bashprintf"Enter your name: "readNAME
echo"Hello $NAME !"printf"Please, enter a number: "readNUMBER
if(("$NUMBER"<"0"));thenecho"$NUMBER is negative !"elif(("$NUMBER"=="0"));thenecho"$NUMBER is null !"elseecho"$NUMBER is positive !"fi
La clause IF..ELIF..ELSE
#!/bin/bashprintf"Enter your name: "readNAME
echo"Hello $NAME !"printf"Please, enter a number: "readNUMBER
if(("$NUMBER"<"0"));thenecho"$NUMBER is negative !"elif(("$NUMBER"=="0"));thenecho"$NUMBER is null !"elseecho"$NUMBER is positive !"fi