// +build !windows,!plan9,!js

// Package unix exports an Elvish namespace that contains variables and // functions that deal with features unique to UNIX-like operating systems. On // non-UNIX operating systems it exports an empty namespace.
package unix import ( ) // ExposeUnixNs indicate whether this module should be exposed as a usable // elvish namespace. const ExposeUnixNs = true // Ns is an Elvish namespace that contains variables and functions that deal // with features unique to UNIX-like operating systems. On var Ns = eval.NsBuilder{ "umask": UmaskVariable{}, }.Ns()