repo.or.cz
/
aurutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
aurutils: v18.4
[aurutils.git]
/
tests
/
issue-test
blob
cb3b657c59ceccec957ef16cdf71e530f371e3b9
1
#!/bin/bash
2
shopt -s
extglob
3
4
for
i
in
issue
/!(
0085
);
do
5
printf
'%s
\t
'
"
$i
"
6
7
if
"
$i
"
>/
dev
/
null
2
>&
1
;
then
8
printf
'%s
\n
'
OK
9
else
10
printf
'%s
\n
'
FAIL
11
fi
12
done