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`.......
Please sign in to leave a comment.
GoLand doesn't support a wildcard (see IDEA-163811). But you can modify your program to expand glob as suggested here.