我试图对以特定前缀开头的所有包进行gofmt
重写。类似的东西:
gofmt -r 'github.com/some/path/<wildcard> -> someotherrepo.com/some/path/<wildcard>'
显然wildcard
不是有效的语法,只是显示了这个概念。我尝试使用单个小写字符,但这在这里不起作用。
我可以尝试使用gofmt
吗?
答案 0 :(得分:-2)
这就是gofmt命令页面所说的
Given a file, it operates on that file; given a directory, it operates on all .go files
in that directory, recursively