Linux command
wuzz 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Start interactive HTTP client
wuzz
Start with a URL pre-filled
wuzz [https://api.example.com/users]
Start with custom headers
wuzz -H "[Content-Type: application/json]" [https://api.example.com]
Start with POST data
wuzz -X POST -d '{"key":"value"}' [https://api.example.com]
Start with a config file
wuzz -c [~/.wuzz/config.toml]
说明
wuzz is an interactive HTTP inspection tool with a terminal user interface. Command line arguments are compatible with cURL syntax, so requests can be copied from browser network inspectors using "copy as cURL". The interface has separate panels for URL, method, headers, request body, query parameters, and response. Navigation uses Tab/Shift+Tab between panels and Ctrl+R to send the request. Ctrl+S saves the response, Ctrl+E saves the request, Ctrl+F loads a saved request, and Alt+H toggles history. F2-F9 jump to specific panels.
参数
- -H, --header _HEADER_
- Set a request header (can be specified multiple times).
- -d, --data _DATA_
- Set the request body data.
- -X, --request _METHOD_
- Set the HTTP method (GET, POST, PUT, etc.).
- -t, --timeout _MSECS_
- Request timeout in milliseconds.
- -F, --form _FIELD_
- Set multipart form data.
- -c, --config _FILE_
- Use the specified configuration file.
- --insecure
- Skip TLS certificate verification.
FAQ
What is the wuzz command used for?
wuzz is an interactive HTTP inspection tool with a terminal user interface. Command line arguments are compatible with cURL syntax, so requests can be copied from browser network inspectors using "copy as cURL". The interface has separate panels for URL, method, headers, request body, query parameters, and response. Navigation uses Tab/Shift+Tab between panels and Ctrl+R to send the request. Ctrl+S saves the response, Ctrl+E saves the request, Ctrl+F loads a saved request, and Alt+H toggles history. F2-F9 jump to specific panels.
How do I run a basic wuzz example?
Run `wuzz` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -H, --header _HEADER_ do in wuzz?
Set a request header (can be specified multiple times).