Skip to content

Commit

Permalink
ocd spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
rtfmkiesel committed Sep 21, 2023
1 parent 49833af commit cae1316
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@ Examples:
drivebyte -f domains.txt
Options:
-f, --file <string> Path to a file containing one URL to screenshot per line
-o, --output-dir <string> Path to the output folder for screenshots (default: ./screenshots)
-f, --file <string> Path to a file containing one URL to screenshot per line
-o, --output-dir <string> Path to the output folder for screenshots (default: ./screenshots)
-p, --ports <string> Ports to scan: "from-to" or "min", "default", "large", "max"
-pt, --port-timeout <int> Timeout for port checks in seconds (default: 3)
-c, --chrome <string> Path to the chrome binary. If left empty, autodetect is used
-i, --incognito Use incognito mode. (default: false)
-x, --proxy-url <string> Proxy URL for the webbrowser. "http://user:passwd@host:port"
-st, --screen-timeout <int> Timeout for taking screenshots in seconds. (default: 10)
-ph, --pixel-h <int> Amount of horizontal pixels for the browser window. (default: 1440)
-pv, --pixel-v <int> Amount of vertical pixels for the browser window. (default: 800)
-t, --temp-dir <string> Parent directory for browser cache. (default: OSTEMP)
-ua, --user-agent <string> User-Agent for the webbrowser. (default: random)
-w, --workers <int> Amount of "threads" aka. browsers open at the same time. (default: 3)
-v, --verbose Enable verbose output. (default: false)
-h, --help Prints this text
-p, --ports <string> Ports to scan: "from-to" or "min", "default", "large", "max"
-pt, --port-timeout <int> Timeout for port checks in seconds (default: 3)
-c, --chrome <string> Path to the chrome binary (default: autodetect)
-i, --incognito Use incognito mode (default: false)
-x, --proxy-url <string> Proxy URL for the webbrowser "http://user:passwd@host:port"
-st, --screen-timeout <int> Timeout for taking screenshots in seconds (default: 10)
-ph, --pixel-h <int> Amount of horizontal pixels for the browser window (default: 1440)
-pv, --pixel-v <int> Amount of vertical pixels for the browser window (default: 800)
-t, --temp-dir <string> Parent directory for browser cache (default: OSTEMP)
-ua, --user-agent <string> User-Agent for the webbrowser (default: random)
-w, --workers <int> Amount of "threads" aka. browsers open at the same time (default: 3)
-v, --verbose Enable verbose output (default: false)
-h, --help Prints this text
```

## Installation
Expand Down
36 changes: 18 additions & 18 deletions pkg/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -390,24 +390,24 @@ Examples:
drivebyte -f domains.txt
Options:
-f, --file <string> Path to a file containing one URL to screenshot per line
-o, --output-dir <string> Path to the output folder for screenshots (default: ./screenshots)
-p, --ports <string> Ports to scan: "from-to" or "min", "default", "large", "max"
-pt, --port-timeout <int> Timeout for port checks in seconds (default: 3)
-c, --chrome <string> Path to the chrome binary. If left empty, autodetect is used
-i, --incognito Use incognito mode. (default: false)
-x, --proxy-url <string> Proxy URL for the webbrowser. "http://user:passwd@host:port"
-st, --screen-timeout <int> Timeout for taking screenshots in seconds. (default: 10)
-ph, --pixel-h <int> Amount of horizontal pixels for the browser window. (default: 1440)
-pv, --pixel-v <int> Amount of vertical pixels for the browser window. (default: 800)
-t, --temp-dir <string> Parent directory for browser cache. (default: OSTEMP)
-ua, --user-agent <string> User-Agent for the webbrowser. (default: random)
-w, --workers <int> Amount of "threads" aka. browsers open at the same time. (default: 3)
-v, --verbose Enable verbose output. (default: false)
-h, --help Prints this text
-f, --file <string> Path to a file containing one URL to screenshot per line
-o, --output-dir <string> Path to the output folder for screenshots (default: ./screenshots)
-p, --ports <string> Ports to scan: "from-to" or "min", "default", "large", "max"
-pt, --port-timeout <int> Timeout for port checks in seconds (default: 3)
-c, --chrome <string> Path to the chrome binary (default: autodetect)
-i, --incognito Use incognito mode (default: false)
-x, --proxy-url <string> Proxy URL for the webbrowser "http://user:passwd@host:port"
-st, --screen-timeout <int> Timeout for taking screenshots in seconds (default: 10)
-ph, --pixel-h <int> Amount of horizontal pixels for the browser window (default: 1440)
-pv, --pixel-v <int> Amount of vertical pixels for the browser window (default: 800)
-t, --temp-dir <string> Parent directory for browser cache (default: OSTEMP)
-ua, --user-agent <string> User-Agent for the webbrowser (default: random)
-w, --workers <int> Amount of "threads" aka. browsers open at the same time (default: 3)
-v, --verbose Enable verbose output (default: false)
-h, --help Prints this text
`)
}

0 comments on commit cae1316

Please sign in to comment.