non_unix.go 576 B

123456789101112131415161718
  1. //go:build windows || plan9 || js
  2. // Package unix exports an Elvish namespace that contains variables and
  3. // functions that deal with features unique to UNIX-like operating systems. On
  4. // non-UNIX operating systems it exports an empty namespace.
  5. package unix
  6. import (
  7. "src.elv.sh/pkg/eval"
  8. )
  9. // ExposeUnixNs indicate whether this module should be exposed as a usable
  10. // elvish namespace.
  11. const ExposeUnixNs = false
  12. // Ns is an Elvish namespace that contains variables and functions that deal
  13. // with features unique to UNIX-like operating systems. On
  14. var Ns = &eval.Ns{}