Home | History | Annotate | Download | only in exec

Lines Matching full:path

13 // ErrNotFound is the error resulting if a path search failed to find an executable file.
14 var ErrNotFound = errors.New("executable file not found in $path")
28 // in the directories named by the path environment variable.
30 // directly and the path is not consulted.
31 // The result may be an absolute path or a path relative to the current directory.
33 // skip the path lookup for these prefixes
46 path := os.Getenv("path")
47 for _, dir := range strings.Split(path, "\000") {