mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-06 11:51:42 +01: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
|