github.com/kolbycrouch/elvish@v0.14.1-0.20210614162631-215b9ac1c423/pkg/eval/mods/unix/non_unix.go (about) 1 // +build windows plan9 js 2 3 // Package unix exports an Elvish namespace that contains variables and 4 // functions that deal with features unique to UNIX-like operating systems. On 5 // non-UNIX operating systems it exports an empty namespace. 6 package unix 7 8 import ( 9 "src.elv.sh/pkg/eval" 10 ) 11 12 // ExposeUnixNs indicate whether this module should be exposed as a usable 13 // elvish namespace. 14 const ExposeUnixNs = false 15 16 // Ns is an Elvish namespace that contains variables and functions that deal 17 // with features unique to UNIX-like operating systems. On 18 var Ns = &eval.Ns{}