TextAnalysisTool / Releases

Repository for storing release artifacts (ex: binaries).
94 stars 26 forks source link

Is there a command line option equivalent of "File -> Save Current Lines" without actually launching UI? #66

Closed miDeepakH closed 5 years ago

miDeepakH commented 5 years ago

Trying to parse a .csv file and save filtered content to a .txt file for further processing. Looking for command line option to do same without need of launching UI.

DavidAnson commented 5 years ago

No, sorry, there is not.

vincec-msft commented 5 years ago

Isn't that "grep" or "findstr"? :) But seriously, you want to pass a csv and a file that specifies the filters (x.tat) and have the tool apply that filters to the csv and save the results to a new file?

miDeepakH commented 5 years ago

Got too comfortable using TextAnalysisTool, that I missed out on looking for "grep" alternative on Windows :| "findstr" serves the purpose :) Thanks