mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
4 lines
99 B
Bash
Executable file
4 lines
99 B
Bash
Executable file
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
diff $1 $2 | grep '^-' >/dev/null && echo DIFFER: $1 $2 && exit 0 || exit 0
|