index
:
moreutils
master
implementations of the non-POSIX utilities included in GNU coreutils
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
printenv.sh
blob: 1ec574afc9be5a481442051271530083cdb23385 (
plain
)
1
2
3
4
5
6
7
if [ -n "$*" ]; then for i in $*; do printf '%s=%s\n' "${i}" "${$i}" done else env fi