mirror of
https://github.com/fwbuilder/fwbuilder
synced 2025-10-16 15:38:43 +02: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
|
|
|
|
|