fullstorydev / grpcurl

Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers
MIT License
10.36k stars 497 forks source link

Use of "-" single dash for flags and arguments #386

Closed ritwik12 closed 1 year ago

ritwik12 commented 1 year ago

As per industry standards, "-" single dash is used for flags which don't take any following parameter and also for any short version of arguments such as -a for --all.

In grpcurl we are using "-" for all types of flags and arguments which leads to a non generic user experience. Is there a particular reason for that?

dragonsinth commented 1 year ago

It's written in Go, and follows the Go command line arg norms