summaryrefslogtreecommitdiff
path: root/ult/ult_9/sign.sh
blob: 246150d95668b593b074cd4108cd3b761638bc59 (plain)
1
2
3
4
5
6
7
#!/bin/bash
if test $1 -lt 0
then
  echo "number is negative"
else
  echo "number is non-negative"
fi