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
1 comment
Official comment

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

Please sign in to leave a comment.