On 06/03/2018 01:16 PM, Brandon Allbery wrote:
On Sun, Jun 3, 2018 at 4:09 PM ToddAndMargo <toddandma...@zoho.com <mailto: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';
Ahhh Poop! Thank you!