Last active
November 27, 2019 14:18
-
-
Save dillera/58bf015bf4de1addcf1efe240a052901 to your computer and use it in GitHub Desktop.
A sample bashrc script for IRIX to build DIDBS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dillera@challenge /usr/didbs/didbs.git (master) $ cat ~/.bashrc | |
echo setup `hostname` basic env | |
echo ---------------------------- | |
echo ' ' | |
#stty intr '^C' echoe | |
export TERM=xterm | |
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\\[\033[00m\] $ " | |
echo 'completed basic bash init' | |
echo 'use the command didbs to load build env' | |
echo 'use aterm to start mult-aterm window' | |
alias didbs='source ~/.build_didbs' | |
alias aterm=' multi-aterm -tr -bg black -fg white -font lucidasanstypewriter-14 &' | |
alias devpkg='versions |grep 7.4.4' | |
#export PATH='~/.local/bin:$PATH' | |
export PATH=/usr/didbs/current/bin:$PATH:/usr/etc | |
export LD_LIBRARYN32_PATH=/usr/didbs/current/lib32:/usr/lib32:/usr/lib32/internal:/lib32 | |
echo 'path setup for didbs tools in /usr/didbs/andy_01/bin...' | |
echo '--------------------------------------------------------' | |
source ~/.build_didbs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment