|
Blog -
Dynastys Blog
|
|
Written by Allen Sanabria
|
|
Thursday, 07 August 2008 12:17 |
|
I've been using/learning OpenSolaris for the past week and WoW it is a complete different world then Linux.. For example I miss my GNU commands.
- Non GNU grep does not have the -r option that I use in the gnu version which is ggrep
- Non GNU sed compared to gsed.
- Non GNU tar does not have gzip integrated as the gtar does have it.
In order to get my OpenSolaris behave like my Baby Linux does :)... I had to added a few aliases like so to my .bashrc file as so...
alias vi="vim"
alias grep="ggrep"
alias egrep="gegrep"
alias sed="gsed"
alias tar="gtar"
I am still adding more as I get frustrated.... :(
Also I added more paths to my PATH environment variable in .bashrc as well...
PATH=/usr/sbin:/usr/bin:/opt/csw/sbin:/opt/csw/bin:/usr/X11R6/bin
export PATH
|
|
Last Updated ( Thursday, 07 August 2008 12:22 )
|