filiph / linkcheck

Fast link checker
https://pub.dartlang.org/packages/linkcheck
MIT License
397 stars 51 forks source link

[Suggestion] Output to text file #94

Open CHJ85 opened 2 years ago

CHJ85 commented 2 years ago

Hi there. It'd be great if your script had a flag (i.e -o) allowing me to output the results to a text file. Textfile example: 404 - goooogle.com 200 - google.com 200 - amazon.com 404 - kgfnsekgj.ca

Is this doable, or would it require a lot of work?

colearendt commented 2 years ago

Agree - this would particularly be useful for internal links too, so that it can be verified that no omissions are introduced by changes over time (i.e. rearchitecting the site, etc.)

nicolasleroy commented 11 months ago

Bumping this one. I would only be interested, because of the long output the script currently produces.

filiph commented 11 months ago

I use the usual unix piping for this:

linkcheck :8000 > output.txt

Does this work for you?