mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 07:14:14 -05:00
15 lines
118 B
Bash
Executable file
15 lines
118 B
Bash
Executable file
#!/bin/sh
|
|
# $Id$
|
|
|
|
x=striptest.xx.$$
|
|
y=striptest.yy.$$
|
|
|
|
cp $1 $x
|
|
strip $x
|
|
cp $2 $y
|
|
strip $y
|
|
|
|
doobjcmp $x $y
|
|
exit
|
|
|
|
#eof
|