Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -487,14 +487,15 @@ Options:
cumbersome to specify on the command line directly.

Examples:
lychee --files-from list.txt
find . -name '*.md' | lychee --files-from -
echo 'README.md' | lychee --files-from -

lychee --files-from list.txt
find . -name '*.md' | lychee --files-from -
echo 'README.md' | lychee --files-from -

File Format:
Each line should contain one input (file path, URL, or glob pattern).
Lines starting with '#' are treated as comments and ignored.
Empty lines are also ignored.
- Each line should contain one input (file path, URL, or glob pattern).
- Lines starting with '#' are treated as comments and ignored.
- Empty lines are also ignored.

--generate <GENERATE>
Generate special output (e.g. the man page) instead of performing link checking
Expand Down
13 changes: 7 additions & 6 deletions lychee-bin/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,14 +398,15 @@ This is useful when you have a large number of inputs that would be
cumbersome to specify on the command line directly.

Examples:
lychee --files-from list.txt
find . -name '*.md' | lychee --files-from -
echo 'README.md' | lychee --files-from -

lychee --files-from list.txt
find . -name '*.md' | lychee --files-from -
echo 'README.md' | lychee --files-from -

File Format:
Each line should contain one input (file path, URL, or glob pattern).
Lines starting with '#' are treated as comments and ignored.
Empty lines are also ignored."
- Each line should contain one input (file path, URL, or glob pattern).
- Lines starting with '#' are treated as comments and ignored.
- Empty lines are also ignored."
)]
files_from: Option<PathBuf>,

Expand Down