mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 21:07:57 +02:00
13 lines
111 B
Bash
13 lines
111 B
Bash
jj ()
|
|
{
|
|
p=$(jobs $1);
|
|
echo $p
|
|
|
|
case "$p" in
|
|
[*) echo matches '[*'
|
|
;;
|
|
*) echo not a match\?
|
|
;;
|
|
esac
|
|
}
|