repo.or.cz
/
bash.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patch-ID: bash41-003
[bash.git]
/
examples
/
functions
/
jj.bash
blob
212c9cec00919612eae2803591a111f66983fda2
1
jj
()
2
{
3
p
=
$
(
jobs
$1
);
4
echo
$p
5
6
case
"
$p
"
in
7
[*)
echo
matches
'[*'
8
;;
9
*)
echo
not a match
\?
10
;;
11
esac
12
}