mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
7 lines
81 B
Bash
Executable File
7 lines
81 B
Bash
Executable File
#!/bin/sh
|
|
cd ../../maps/southern_cross
|
|
|
|
for f in *.dmm;
|
|
do cp $f $f.backup;
|
|
done
|