parallel
[Top][All Lists]
Advanced

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

Question


From: Saint Michael
Subject: Question
Date: Fri, 4 Mar 2022 20:45:00 -0500

I have a bunch of *.csv files.
I need to process each line of the separately, so I do
function() { any process }
export -f function
cat *.csv | parallel --colsep ',' function  "{1} {2} {3} {4} {5} {6} {7}"


The question is: is this the best possible way to do this? I don't like to use "cat"


reply via email to

[Prev in Thread] Current Thread [Next in Thread]