home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / KERNEL-S / V1.0 / LINUX-1.0 / LINUX-1 / linux / makever.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1993-12-01  |  166 b   |  14 lines

  1. #! /bin/sh
  2.  
  3. if [ ! -f .version ]
  4. then
  5.     echo 0 > .version
  6. fi
  7. cycle=`cat .version`
  8. cycle=`expr $cycle + 1`
  9. if [ $cycle -gt 99 ]
  10. then
  11.     cycle=0
  12. fi
  13. echo $cycle > .version
  14.