Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Zsh noob: word-splitting headache
- X-seq: zsh-users 8330
- From: Clint Adams <clint@xxxxxxx>
- To: kynn@xxxxxxxxx
- Subject: Re: Zsh noob: word-splitting headache
- Date: Tue, 4 Jan 2005 16:10:25 -0500
- Cc: zsh-users@xxxxxxxxxx
- In-reply-to: <200501042103.j04L3KU19128@xxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <200501042103.j04L3KU19128@xxxxxxxxxxxxxxxx>
> for i in `foo`
> do something with $i
> done
for i in ${(f)"$(foo)"}
do something with $i
done
Messages sorted by:
Reverse Date,
Date,
Thread,
Author