golang gofmt包重写通配符

时间:2016-04-22 01:04:33

标签: go import url-rewriting gofmt

我试图对以特定前缀开头的所有包进行gofmt重写。类似的东西:

gofmt -r 'github.com/some/path/<wildcard> -> someotherrepo.com/some/path/<wildcard>'

显然wildcard不是有效的语法,只是显示了这个概念。我尝试使用单个小写字符,但这在这里不起作用。

我可以尝试使用gofmt吗?

1 个答案:

答案 0 :(得分:-2)

这就是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/