Options (5)
-f, --filebooleanTest a list of URLs
Example:
siege {{[-f|--file]}} {{path/to/url_list.txt}}-i, --internetbooleanTest list of URLs in a random order (Simulates internet traffic)
Example:
siege {{[-i|--internet]}} {{[-f|--file]}} {{path/to/url_list.txt}}-b, --benchmarkbooleanBenchmark a list of URLs (without waiting between requests)
Example:
siege {{[-b|--benchmark]}} {{[-f|--file]}} {{path/to/url_list.txt}}-c, --concurrentbooleanSet the amount of concurrent connections
Example:
siege {{[-c|--concurrent]}} {{50}} {{[-f|--file]}} {{path/to/url_list.txt}}-t, --timebooleanSet how long for the siege to run for
Example:
siege {{[-t|--time]}} {{30s}} {{[-f|--file]}} {{path/to/url_list.txt}}Examples (6)
Test a URL with default settings
siege https://example.comTest a list of URLs
siege [-f|--file] path/to/url_list.txtTest list of URLs in a random order (Simulates internet traffic)
siege [-i|--internet] [-f|--file] path/to/url_list.txtBenchmark a list of URLs (without waiting between requests)
siege [-b|--benchmark] [-f|--file] path/to/url_list.txtSet the amount of concurrent connections
siege [-c|--concurrent] 50 [-f|--file] path/to/url_list.txtSet how long for the siege to run for
siege [-t|--time] 30s [-f|--file] path/to/url_list.txtmade by @shridhargupta | data from tldr-pages