1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-18 17:27:20 +01:00
2008-05-20 00:02:10 +00:00

16 lines
187 B
Bash
Executable File

#!/bin/sh
N=$1
if which opendiff > /dev/null; then
TOOL="opendiff"
elif which tkdiff > /dev/null; then
TOOL="tkdiff "
else
TOOL="diff -u -b -B"
fi
$TOOL ${N}.fw.orig ${N}.fw