aaronpowell/dotnet-delice

pretty print to text file?

Closed this issue · 2 comments

joreg commented

helo aaron,

thanks for this great project!

i see how i can get the json to a file but is there also a way to get the pretty print into a file?

The pretty print is intended to be human readable, not machine readable, hence why it's for display not saving.

Easiest solution is to redirect the output:

$> dotnet delice >> output.txt
joreg commented

great, thanks, didn't know about the >>