30 lines
415 B
Go
30 lines
415 B
Go
package dirs
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
// UnExpand unexpands some directory shortcuts
|
|
//
|
|
// $HOME -> ~
|
|
func UnExpand(dir string) (outdir string) {
|
|
var (
|
|
home = os.Getenv("HOME")
|
|
pwd string
|
|
err error
|
|
)
|
|
|
|
outdir = filepath.Clean(dir)
|
|
|
|
pwd, err = os.Getwd()
|
|
if err == nil {
|
|
outdir = strings.Replace(outdir, pwd, ".", 1)
|
|
}
|
|
|
|
outdir = strings.Replace(outdir, home, "~", 1)
|
|
|
|
return
|
|
}
|