info 99 B

1234567
  1. #!/bin/sh
  2. UNAME=`uname -n 2>/dev/null`
  3. if [ X$UNAME = X ]
  4. then echo INFO
  5. else echo INFO.$UNAME
  6. fi