if [ "$num" -gt 0 ]
then ...
To stop syntax errors, add a leading zero, like this:
if [ "0$num" -gt 0 ]
then ...
In that case, if $num is empty, the test will
compare 0 to 0. If
$num is 1, the test will be
true (because 01 is greater than
0) -- and so on, just as it should be.