blob: ea978b0322ae012c20ac945fee08735ac1b42be3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# $OpenBSD: dostriptest,v 1.2 1998/02/15 18:50:12 niklas Exp $
x=striptest.xx.$$
y=striptest.yy.$$
cp $1 $x
strip $x
cp $2 $y
strip $y
doobjcmp $x $y
exit
#eof
|