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