10 lines
123 B
Bash
10 lines
123 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
now=$(date +%Y%m%d)
|
||
|
|
||
|
make all
|
||
|
mkdir -p bin
|
||
|
for i in *.hex; do
|
||
|
cp $i bin/scoreboard-$now-${i#scoreboard-}
|
||
|
done
|