Files

44 lines
933 B
Go
Raw Permalink Normal View History

2019-05-11 13:22:43 +03:00
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
2019-10-30 19:34:44 +03:00
// For more tutorials : https://learngoprogramming.com
// In-person training : https://www.linkedin.com/in/inancgumus/
// Follow me on twitter: https://twitter.com/inancgumus
2019-05-11 13:22:43 +03:00
package main
import (
"fmt"
"os"
"path/filepath"
"strings"
)
func main() {
// Get and split the PATH environment variable
// SplitList function automatically finds the
// separator for the path env variable
words := filepath.SplitList(os.Getenv("PATH"))
// Alternative way, but above one is better:
// words := strings.Split(
// os.Getenv("PATH"),
// string(os.PathListSeparator))
query := os.Args[1:]
for _, q := range query {
for i, w := range words {
q, w = strings.ToLower(q), strings.ToLower(w)
2019-05-11 16:37:39 +03:00
if !strings.Contains(w, q) {
continue
2019-05-11 13:22:43 +03:00
}
2019-05-11 16:37:39 +03:00
fmt.Printf("#%-2d: %q\n", i+1, w)
2019-05-11 13:22:43 +03:00
}
}
}