我正在尝试对所有以特定前缀开头的软件包进行gofmt重写。就像是:
gofmt -r 'github.com/some/path/<wildcard> -> someotherrepo.com/some/path/<wildcard>'
显然wildcard是无效的语法,仅显示了概​​念。我尝试使用单个小写字符,但这在这里不起作用。

是否可以用gofmt做我想做的事情?

最佳答案

这就是gofmt命令页面所说的

Given a file, it operates on that file; given a directory, it operates on all .go files
in that directory, recursively

https://golang.org/cmd/gofmt/

关于go - golang gofmt包重写通配符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36782937/

10-13 03:42