rowingdude / analyzeMFT

MIT License
423 stars 117 forks source link

Option to supress csv header #60

Open tbi360 opened 1 year ago

tbi360 commented 1 year ago

I use this tool a lot and I plug it into other scripts which do not require header function. would it be possible to have an option to suppress this?

Many thanks

dkovar commented 1 year ago

Alas, I've not touched the code in three years and am unlikely to add this. That said, it should be quite simple and I'll see if I can get to it.

In the mean time, you could pipe the output through tail:

tail -n +2

(sed and awk can do something similar)

I'm glad you are still finding this useful.