Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Expansion order
- X-seq: zsh-users 8428
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: Expansion order
- Date: Tue, 25 Jan 2005 16:54:56 +0000
- In-reply-to: <200501251453.j0PEr3bo024178@xxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <20050125144150.GP29543@xxxxxxx> <200501251453.j0PEr3bo024178@xxxxxxxxxxxxxx>
On Jan 25, 2:53pm, Peter Stephenson wrote:
} Subject: Re: Expansion order
}
} typeset -xT LS_OPTIONS="-N --color=tty -T 0" ls_options
} alias ls='ls $ls_options'
}
} This allows for whitespace characters in the options as long as you
} manipulate them through the array ls_options.
Doesn't that need to be
typeset -xT LS_OPTIONS="-N --color=tty -T 0" ls_options ' '
?? Otherwise it's splitting on colons, not spaces.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author