URL
https://opencores.org/ocsvn/amber/amber/trunk
Subversion Repositories amber
[/] [amber/] [trunk/] [hw/] [fpga/] [bin/] [increment_seed.sh] - Rev 54
Go to most recent revision | Compare with Previous | Blame | View Log
#/bin/sh -f # Simple script to increment a number in a file NUM=`cat $1` NUM=$(($NUM + 1 )) echo $NUM > $1 echo $NUM
Go to most recent revision | Compare with Previous | Blame | View Log