repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* lib/gas-defs.exp (regexp_diff): Allow '#...' to mean "some
[binutils.git]
/
gas
/
testsuite
/
lib
/
doboth
blob
bcb837cff2b2c9f090549cb3c1e81252a54dfddb
1
#!/bin/sh
2
3
x
=
$1
;
shift
4
y
=
$1
;
shift
5
6
rm
tmp
.0
> /
dev
/
null
2
>&
1
7
ln
-s
$x
tmp
.0
8
$
*
tmp
.0
>
tmp
.1
9
10
rm
tmp
.0
11
ln
-s
$y
tmp
.0
12
$
*
tmp
.0
>
tmp
.2
13
14
rm
tmp
.0
15
16
diff
-c
tmp
.1
tmp
.2
17
exit
18
19
#eof