7 lines
132 B
Bash
Executable file
7 lines
132 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -f tools/mondo.dat ]; then
|
|
for i in $(seq 1 250) ; do
|
|
cat tools/standard.dat >> tools/mondo.dat
|
|
done
|
|
fi
|