github.com/hugelgupf/u-root@v0.0.0-20191023214958-4807c632154c/cmds/core/elvish/main.go (about) 1 // Elvish is a cross-platform shell, supporting Linux, BSDs and Windows. It 2 // features an expressive programming language, with features like namespacing 3 // and anonymous functions, and a fully programmable user interface with 4 // friendly defaults. It is suitable for both interactive use and scripting. 5 package main 6 7 import ( 8 "os" 9 10 "github.com/u-root/u-root/cmds/core/elvish/program" 11 ) 12 13 func main() { 14 os.Exit(program.Main(os.Args)) 15 }