i-bash/tests/new-exp3.sub

31 lines
333 B
Text
Raw Normal View History

2000-03-17 21:46:59 +00:00
:
# Set up some dummy variables beginning with _Q
_QUANTITY=
_QUOTA=
_QUOTE=
_QUILL=
_QUEST=
_QUART=
recho ${!_Q*}
recho ${!_Q@} # compatibility
2000-03-17 21:46:59 +00:00
IFS="-$IFS"
recho ${!_Q*}
recho "${!_Q*}"
recho ${!_Q@}
recho "${!_Q@}"
2000-03-17 21:46:59 +00:00
recho ${!_Y*}
recho "${!_Q* }"
IFS=$' \t\n'
set a b c d e f g h i j k l m n o p
recho ${!1*}
recho ${!@*}