github.com/TeaOSLab/EdgeNode@v1.3.8/internal/utils/exec/look_others.go (about) 1 // Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn . 2 //go:build !linux 3 4 package executils 5 6 import "os/exec" 7 8 func LookPath(file string) (string, error) { 9 return exec.LookPath(file) 10 }