How can I write a shell script that checks for an environment variable and writes to a log file if the variable is unset?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you only want a message when it is unset, then:
If you simply want the script to stop and report on stderr, then:
(You can test that in an interactive shell, but the interactive shell won't exit. Put it in a script and the script is exited.) |
|||||
|
|
The command to write to the log is
EDIT: In case you mean with log just an arbitrary log file and not the system log, you can of course replace the logger with echo bla bla > log.file. |
|||
|
|
|
|
|||
|
|