On Sun, Jun 3, 2018 at 4:09 PM ToddAndMargo <toddandma...@zoho.com> wrote:

> $ touch a b c
> $ p6 'chmod 0o777 < a b c >;'
> ===SORRY!=== Error while compiling -e
> Preceding context expects a term, but found infix > instead.
> at -e:1
> ------> chmod 0o777 < a b c >⏏;
>

You're missing the comma after the mode parameter.

    chmod 0o777, < a b c >;

which is the same as

    chmod 0o777, 'a', 'b', 'c';

-- 
brandon s allbery kf8nh                               sine nomine associates
allber...@gmail.com                                  ballb...@sinenomine.net
unix, openafs, kerberos, infrastructure, xmonad        http://sinenomine.net

Reply via email to