linux-old/makever.sh
<<
>>
Prefs
   1#! /bin/sh
   2
   3if [ ! -f .version ]
   4then
   5        echo 0 > .version
   6fi
   7cycle=`cat .version`
   8cycle=`expr $cycle + 1`
   9if [ $cycle -gt 99 ]
  10then
  11        cycle=0
  12fi
  13echo $cycle > .version
  14
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.