PRINTENV(1) User Commands PRINTENV(1)NAME
printenv - print all or part of environment
SYNOPSIS
printenv [OPTION]... [VARIABLE]...
DESCRIPTION
Print the values of the specified environment VARIABLE(s). If no VARIABLE is specified, print name and value pairs for them all.
-0, --null
end each output line with NUL, not newline
--help display this help and exit
--version
output version information and exit
NOTE: your shell may have its own version of printenv, which usually supersedes the version described here. Please refer to your shell's
documentation for details about the options it supports.
AUTHOR
Written by David MacKenzie and Richard Mlynarik.
REPORTING BUGS
GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
Report printenv translation bugs to <http://translationproject.org/team/>
COPYRIGHT
Copyright (C) 2017 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
SEE ALSO
Full documentation at: <http://www.gnu.org/software/coreutils/printenv>
or available locally via: info '(coreutils) printenv invocation'
GNU coreutils 8.28 January 2018 PRINTENV(1)
Check Out this Related Man Page
PRINTENV(1) User Commands PRINTENV(1)NAME
printenv - print all or part of environment
SYNOPSIS
printenv [OPTION]... [VARIABLE]...
DESCRIPTION
Print the values of the specified environment VARIABLE(s). If no VARIABLE is specified, print name and value pairs for them all.
-0, --null
end each output line with 0 byte rather than newline
--help display this help and exit
--version
output version information and exit
NOTE: your shell may have its own version of printenv, which usually supersedes the version described here. Please refer to your shell's
documentation for details about the options it supports.
GNU coreutils online help: <http://www.gnu.org/software/coreutils/> Report printenv translation bugs to <http://translationpro-
ject.org/team/>
AUTHOR
Written by David MacKenzie and Richard Mlynarik.
COPYRIGHT
Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
SEE ALSO
The full documentation for printenv is maintained as a Texinfo manual. If the info and printenv programs are properly installed at your
site, the command
info coreutils 'printenv invocation'
should give you access to the complete manual.
GNU coreutils 8.22 June 2014 PRINTENV(1)
I try to test the carriage return in a variable.
$ LENGTH=`expr $VARIABLE : ".*"` will return the length of the variable. But this doesn't work if $VARIABLE has zero length.
Any help will be well appreciated.
Thanks in advance.
Giovanni (4 Replies)
When I type "printenv" I have some informations as LANG PATH PWD....
- Where is the file which contain this informations?
- When PWD is charged in the system...
Thanks... (1 Reply)
Hi folks,
How can I change a terminal to display different things in different collors.. for example, folders in blue, scripts in green... as it works in Linux??
Thanks for any tip!
Fernanda (21 Replies)
Hi gurus
I am trying to compile coreutils for studying purposes. I downloaded package (exact version which target system already contains) and tried following:
./configure
make
but compiling ands with some header file dependency problem. Then I tried compile particular binary
cd... (9 Replies)
Hello all,
I have a situation where I need to parse for certain items from a $VARIABLE within a sh script.
The sh script is run when an alert comes in.
The alert data payload has a Message field called "EVENTMSG"
The script that is run takes the "EVENTMSG" and prints it out to the... (12 Replies)
so I'm going over this script someone else wrote and I haven't seen the aforementioned construct before.
The code says:
declare VAR1="${!VARIABLE:-\n}"
I know what the ":-\n" does but I don't understand why would one negate ("!") the variable in the first place. Am I reading this right... (2 Replies)