cmd/go: add a go mod edit -f
flag akin to go list -f
#51757
Labels
GoCommand
cmd/go
NeedsDecision
Feedback is required from experts, contributors, and/or the community before a change can be made.
Tools
This label describes issues relating to any tools in the x/tools repository.
Milestone
go list -json
is very useful, because it makes its output very easy to consume by other programs. Its companion,go list -f
, is almost equally as useful for similar cases, such as when one needs just one field, or when one is calling the Go tool from a shell script, where JSON decoding isn't as straightforward.So, for instance, I can obtain the current package's import path via just
go list -f {{.ImportPath}}
rather than reaching for an external tool likego list -json | jq -r .ImportPath
.I argue that a similar situation applies to
go mod edit -json
; it's a great way to obtain the data contained bygo.mod
files without needing to use a parser that understands its syntax. However, we lack ago mod edit -f
, so if I want to obtain just one field like{{.Go}}
, I have to reach for a JSON parser.I think it would be relatively straightforward to add
go mod edit -f
, and it would make the command more consistent withgo list -f
.One potential argument against this proposed flag addition is that we already have other cmd/go commands that have a
-json
flag, but no-f
flag. One by one, and excludinggo mod edit
, these are:go work edit
: arguably the same case asgo mod edit
, and should be changed as wellgo test -json
: it prints a newline-separated stream of JSON objects, and it tends to print a lot more output, so a proper program with a JSON parser is a reasonable requirementgo env -json
: it's already easy to get a single value without JSON encoding viago env NAME
, sogo env -f {{.NAME}}
feels redundantThe text was updated successfully, but these errors were encountered: