mirror of
https://github.com/webrecorder/browsertrix-crawler.git
synced 2025-10-19 14:33:17 +00:00
15 lines
406 B
Bash
15 lines
406 B
Bash
![]() |
#!/bin/bash
|
||
|
CURR=$(dirname "${BASH_SOURCE[0]}")
|
||
|
|
||
|
out=$CURR/docs/user-guide/cli-options.md
|
||
|
echo "# All Command-Line Options" > $out
|
||
|
echo "" >> $out
|
||
|
echo "The Browsertrix Crawler Docker image currently accepts the following parameters:" >> $out
|
||
|
echo "" >> $out
|
||
|
echo '```' >> $out
|
||
|
#node $CURR/../dist/main.js --help >> $out
|
||
|
docker run webrecorder/browsertrix-crawler crawl --help >> $out
|
||
|
echo '```' >> $out
|
||
|
|
||
|
|