3fb51b3a43
This makes a difference if IFS starts with *, ?, [ or a CTL* byte.
9 lines
83 B
Plaintext
9 lines
83 B
Plaintext
# $FreeBSD$
|
|
|
|
set -- / ''
|
|
IFS=*
|
|
set -- "$*"
|
|
IFS=:
|
|
args="$*"
|
|
[ "$#:$args" = "1:/*" ]
|