mooz / percol

adds flavor of interactive filtering to the traditional pipe concept of UNIX shell
3.3k stars 145 forks source link

how to pass an array to percol? #76

Closed el3ctron closed 8 years ago

el3ctron commented 9 years ago

If a have an array arr = [a, b, c] and i want to pass this array to percol, how could i do it?

Thanks for your answer! Great software piece!

el3ctron commented 8 years ago

i find the answer doing one " ".join(arr) and next segmenting the spaces with breaklines -->\n

now is working!