You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide a switch that allows the input of filenames to be directory based. If a directory has more files than is allowed on the command line (when using * for example) the command fails (as expected).
e.g. this fails gocsv stack /my/dir/of/10M_files/*.csv
So the only way to get round this is to: find /my/dir/of/10M_files/ -name "*.csv" -exec gocsv stack "{}" ";"
The text was updated successfully, but these errors were encountered:
Provide a switch that allows the input of filenames to be directory based. If a directory has more files than is allowed on the command line (when using * for example) the command fails (as expected).
e.g. this fails
gocsv stack /my/dir/of/10M_files/*.csv
So the only way to get round this is to:
find /my/dir/of/10M_files/ -name "*.csv" -exec gocsv stack "{}" ";"
The text was updated successfully, but these errors were encountered: