How to specify multiple cmd line arg with regular expression

For example,in the iterm, I input `go run mrsequential.go pg*.txt`, which pg*.txt represent several txt files,but when in the ide configuration, I did like the following,but the os.Args[1] just equals `pg*.txt`.......

0
正式评论

GoLand doesn't support a wildcard (see IDEA-163811). But you can modify your program to expand glob as suggested here.

请先登录再写评论。