mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
17 lines
125 B
Plaintext
17 lines
125 B
Plaintext
set -- a b
|
|
IFS=
|
|
|
|
echo $*
|
|
echo "$*"
|
|
|
|
a=abcd
|
|
echo "${a#$*}"
|
|
|
|
case ab in
|
|
$*) echo ok 1;;
|
|
esac
|
|
|
|
case $* in
|
|
ab) echo ok 2 ;;
|
|
esac
|