lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> sh. gcc { o = file } (file..'.c") .I. grep 'error' .I. sort .out

The closest thing to a pipe symbol is the division operator:

  sh. gcc { o = file } (file..'.c") / grep 'error' / sort .out

It has the right (ie, left!) associativity.