1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-19 01:37:17 +01:00
fwbuilder/test/ipf/recycle
2007-12-25 22:25:59 +00:00

18 lines
170 B
Bash
Executable File

#!/bin/sh
for f in *.fw; do
j=${f}.orig
mv $f $j
done
for f in *-ipf.conf; do
j=${f}.orig
mv $f $j
done
for f in *-nat.conf; do
j=${f}.orig
mv $f $j
done