Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: greps pipes and eval bad patterns
- X-seq: zsh-users 20827
- From: ZyX <kp-pav@xxxxxxxxx>
- To: Ray Andrews <rayandrews@xxxxxxxxxxx>, "zsh-users@xxxxxxx" <zsh-users@xxxxxxx>
- Subject: Re: greps pipes and eval bad patterns
- Date: Mon, 26 Oct 2015 16:04:07 +0300
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1445864648; bh=WCveXs7Qs3u2NqopglgkAfG4gpZ7edo16C1Sgaza4WQ=; h=From:To:In-Reply-To:References:Subject:Date; b=EuCCIhQJypccTgumR35j+Xt+CmGlchNG0HIsskCjqOasEu6Gvdir7j/OaD8lhEmFm Q/F8fjxL7X98Ne9LqC17GcAG1njIVbUTM3KIIDNo0F2KkomkpB4u4GuWlRUz8vr+6i odyTYZhdadsBd6UKRDlk+W8sZVnuN2F/KDvl1ydg=
- In-reply-to: <562D9E85.7080006@eastlink.ca>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <562D31C3.9030705@eastlink.ca> <151025180235.ZM30558@torch.brasslantern.com> <562D9E85.7080006@eastlink.ca>
26.10.2015, 06:32, "Ray Andrews" <rayandrews@xxxxxxxxxxx>:
> On 10/25/2015 06:02 PM, Bart Schaefer wrote:
>> On Oct 25, 12:47pm, Ray Andrews wrote:
>> }
>> } test1 ()
>> } {
>> } gstring=" | grep \[01;34m "
>> } tree --du -haC | grep -Ev "^[^\[]{$levels}\[*" "$gstring"
>> } }
>>
>> One doesn't normally build up a pipeline that way, but if you must
>
> What would be the better way? I'm not wedded to anything, just looking
> for the
> appropriate method.
>> do
>> so, you're on the right track with "eval" -- you just haven't applied
>> enough quoting. "eval" is going to re-parse everything, so you need
>> to quote everyhing to the same depth:
>>
>> eval 'tree --du -haC | grep -Ev "^[^\[]{$levels}\[*"' "$gstring"
>>
>> The single quotes (before tree and after the levels pattern) keep the
>> first pipeline (and importantly the double-quotes that are around the
>> grep pattern) from being interpreted until eval does so.
>
> Enlightenment. We freeze all expansions with single quotes until eval
> sorts it all out in
> one go.
>
>> The use of
>> the parameter for $gstring has the same effect.
>>
>> You might be able to see this better if you assign everything to
>> variables before eval-ing, e.g.
>>
>> test1 ()
>> {
>> gstring="| grep \[01;34m "
>> glevels='| grep -Ev "^[^\[]{$levels}\[*"'
>> tree="tree --du -haC"
>> eval "$tree" $glevels" "$gstring"
>
> Yeah, that's the sort of thing I'm used to doing I just didn't know how
> to handle the
> tricky characters. It makes nothing but sense now that I see it. So the
> final product
> becomes:
>
> t ()
> {
> local gstring=
> [ "$1" = ',f' ] && { gstring=' | grep "\[01;34m" '; shift }
> integer levels=$(( ($1 + 1) * 4 ))
> eval ' tree --du -haC | grep -Ev "^[^\[]{$levels}\[*" ' $gstring
> du -sh .
> }
Specifically this I would write as
local -a gcmd
gcmd=( cat )
if [[ $1 == ,f ]] ; then
gcmd=( grep '\[01;34m' )
shift
endif
integer levels=$(( ($1 + 1) * 4 ))
tree --du -haC | grep -Ev '^[^\[]{'"$levels"'\[* ' | $gcmd
>
> ... a better tree than tree.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author