Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Handle ssh X11 forwarding in .bashrc' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Handle ssh X11 forwarding in .bashrc
Authored by: rhowell on Sep 27, '05 09:31:27AM
For completeness, this statement in tcsh:

if (! $?DISPLAY) then
setenv DISPLAY :0.0
endif

achieves the same as this statement in bash:

if [ -z "$DISPLAY" ]; then
export DISPLAY=:0.0
fi



[ Reply to This | # ]