Hacker News new | ask | show | jobs
by jimbishopp 3231 days ago
Wildcard: "An import path is a pattern if it includes one or more "..." wildcards ... For example, net/... expands to net and packages in its subdirectories."

https://golang.org/cmd/go/#hdr-Description_of_package_lists

1 comments

Right but was this a thing before golang existed or is it specific to go commands?

It was certainly popularized by "go get ./...".

It's specific to Go. Shell globbing has "⁎⁎", though.