mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-19 17:57:22 +01:00
9 lines
61 B
Bash
Executable File
9 lines
61 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in *.fw; do
|
|
j=${f}.orig
|
|
mv $f $j
|
|
done
|
|
|
|
|