[Date Prev][Date
Next][Thread Prev][Thread Next][Date
Index][Thread Index]
Re: [OT]Bash Script help
On Thursday 05 June 2003 21:09, Dean Smith wrote:
Or alternatively "cast" the string variables to integer types:
#!/bin/bash
val=42;
limit1=50;
limit2=13;
let foo=$val;
let bar=$limit1;
let baz=$limit2;
if [ $foo -gt $bar ]; then
echo "hurrah!";
else echo "arse!";
fi
if [ $foo -gt $baz ]; then
echo "hurrah!";
else echo "arse!";
fi
ant
--
/\/\
www.ant.org ('') www.ant.org
()
Megawatt Winged Avenger
Home |
Main Index |
Thread Index
|