Source File
unix.go
Belonging Package
src.elv.sh/pkg/eval/mods/unix
// +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 uniximport ()// 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. Onvar Ns = eval.NsBuilder{"umask": UmaskVariable{},}.Ns()
The pages are generated with Golds v0.2.8-preview. (GOOS=darwin GOARCH=arm64)