mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-19 09:47:20 +01:00
14 lines
112 B
Bash
Executable File
14 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in *.fw; do
|
|
j=${f}.orig
|
|
mv $f $j
|
|
done
|
|
|
|
for f in *.conf; do
|
|
j=${f}.orig
|
|
mv $f $j
|
|
done
|
|
|
|
|