2

我正在尝试gofmt重写所有以某个前缀开头的包。就像是:

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

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

有可能做我正在尝试的事情gofmt吗?

4

1 回答 1

-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/

于 2016-04-22T04:48:28.750 回答