-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flac -t output not readily greppable #196
Comments
Also, the -t output should probably only output a single line per file. Why is it wrapping?
I'm using I can't use |
It seems that |
It would also be cool if it could print the full file path argument as passed to |
Doesn't tell me which directory it's in. Why is it truncating the argument to just the basename? |
From your experiments it is clear that However, I think it would be possible to do what you want by not letting FLAC do the file walking. Would something like this be more what you're looking for? |
Yeah, that's why I think this is a bug (and why I reported it). It's a unix command line tool, they are expected to operate in certain way so that they can be linked together in pipes and in scripts. I appreciate the suggestion for wrapping the utility, I will use it when I revisit this project. |
Every unix command line utility works differently. Just because something works a certain way with When using |
It seems to me that
flac -t
should suppress the warranty/credits/version output, much likeshasum -c
, or at least put the noise to a different fd than the meaningful output. Perhaps the warranty/credits could go to stderr (to be seen by the user) and the real output could go to stdout.It seems that it should also skip the percentage count-up in the event that stdout is not a tty.
The text was updated successfully, but these errors were encountered: