After Work
The best club in Chicago
for Chicago Singles is
Highlife Adventures!
Are you looking for a
Jersey Girl T-Shirt
?
Kyoto Sushi
in Chicago, on Lincoln Ave.
Moody's Pub
in Chicago, has great burgers
Skylark
in Chicago, on Halsted .. excellent Friday fish fry!
|
UNIX
»
shell
»
»
Solaris environment setup
Solaris setup: for Korn Shell. Add these commands to your .bash_profile
script located in /export/home/yourlogin.
# allow ESC processing of line commands, vi style
set -o vi
# backspace setting .. depends on emulator
stty erase ^?
# perl location - mainly for reference
export PERL=/usr/local/bin/perl
# editor setting, needed for Oracle and some other processes
export EDITOR=vi
# nice pathing display
export HOSTNAME=`hostname`
export PS1=`echo '\033[35m${HOSTNAME}:${PWD}\n>'`
# display the host name
banner $HOSTNAME
|
|
|
|