Files
KubePi/thirdparty/gotty/pkg/homedir/expand.go
2021-09-27 18:40:57 +08:00

14 lines
160 B
Go

package homedir
import (
"os"
)
func Expand(path string) string {
if path[0:2] == "~/" {
return os.Getenv("HOME") + path[1:]
} else {
return path
}
}