README ¶ tilde This package provides tilde expansion functionality in Go. Usage import "github.com/prep/tilde" func main() { path, err := tilde.New("~/.bash_profile") if err != nil { // Handle error. } // path is now /home/user/.bash_profile. } License This software is distributed under the BSD-style license found in the LICENSE file. Expand ▾ Collapse ▴ Documentation ¶ Index ¶ func New(p string) (string, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func New ¶ func New(p string) (string, error) New takes a path that starts with a tilde and expands it to its full path. Types ¶ This section is empty. Source Files ¶ View all Source files tilde.go Click to show internal directories. Click to hide internal directories.