mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
16 lines
262 B
Plaintext
16 lines
262 B
Plaintext
declare -a metas
|
|
set a b c
|
|
|
|
set -x
|
|
# some time we will have better compound assignment printing (after expansion)
|
|
metas=( \| \& \; \( \) \< \> $' ' $'\t' $'\n' )
|
|
n=( $@ )
|
|
|
|
# like regular expansions
|
|
: "${metas[@]}"
|
|
|
|
DEFAULT_IFS=$' \t\n'
|
|
|
|
set +x
|
|
declare -p metas
|