mirror of
https://github.com/gwenhael-le-moine/x48.git
synced 2024-11-16 19:50:21 +01:00
e59ca61c98
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
14 lines
182 B
Bash
Executable file
14 lines
182 B
Bash
Executable file
#! /bin/sh
|
|
|
|
if [ ! -f .version ]
|
|
then
|
|
echo 0 > .version
|
|
fi
|
|
cycle=`cat .version`
|
|
cycle=`expr $cycle + 1`
|
|
if [ $cycle -gt 255 ]
|
|
then
|
|
cycle=0
|
|
fi
|
|
echo $cycle > .version
|
|
|