I heard (although I can't find any sources for proof) that the USER environment variable may not be set in a old Unix shells (maybe even some obscure shells as well). What is the probability that it won't be set?
feedback
|
|
The probability is very low. if you want a fallback when writing a script:
...will default $USER if it's unset. For really old pre-POSIX Bourne shells, you'd want:
| |||
|
feedback
|
|
Well, are you expecting to use any old shells, or are you expecting users of your program to do so? Anyway, there's always | |||
|
feedback
|