mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-18 17:27:20 +01:00
15 lines
170 B
Bash
Executable File
15 lines
170 B
Bash
Executable File
#!/bin/sh
|
|
|
|
T=$1
|
|
N=$2
|
|
|
|
if which opendiff > /dev/null; then
|
|
TOOL="opendiff"
|
|
else
|
|
TOOL="tkdiff -b -B "
|
|
fi
|
|
|
|
${TOOL} firewall${N}-${T}.conf.orig firewall${N}-${T}.conf
|
|
|
|
|