Initial revision
[deliverable/binutils-gdb.git] / gas / testscripts / doboth
1 #!/bin/sh
2 # $Id$
3
4 x=$1 ; shift
5 y=$1 ; shift
6
7 rm tmp.0 > /dev/null 2>&1
8 ln -s $x tmp.0
9 $* tmp.0 > tmp.1
10
11 rm tmp.0
12 ln -s $y tmp.0
13 $* tmp.0 > tmp.2
14
15 rm tmp.0
16
17 diff -c tmp.1 tmp.2
18 exit
19
20 #eof
This page took 0.032484 seconds and 4 git commands to generate.