From 04d77d9bb07ea2efc93895329a39f7039656c862 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fan=20Can=20Bak=C4=B1r?= Date: Mon, 12 Jan 2026 12:04:45 +0300 Subject: [PATCH] fix: add short flag for csv option --- runner/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner/options.go b/runner/options.go index 46e9bc80..a4444b57 100644 --- a/runner/options.go +++ b/runner/options.go @@ -483,7 +483,7 @@ func ParseOptions() *Options { flagSet.BoolVarP(&options.StoreResponse, "store-response", "sr", false, "store http response to output directory"), flagSet.StringVarP(&options.StoreResponseDir, "store-response-dir", "srd", "", "store http response to custom directory"), flagSet.BoolVarP(&options.OmitBody, "omit-body", "ob", false, "omit response body in output"), - flagSet.BoolVar(&options.CSVOutput, "csv", false, "store output in csv format"), + flagSet.BoolVarP(&options.CSVOutput, "csv", "c", false, "store output in csv format"), flagSet.StringVarP(&options.CSVOutputEncoding, "csv-output-encoding", "csvo", "", "define output encoding"), flagSet.BoolVarP(&options.JSONOutput, "json", "j", false, "store output in JSONL(ines) format"), flagSet.BoolVarP(&options.ResponseHeadersInStdout, "include-response-header", "irh", false, "include http response (headers) in JSON output (-json only)"),