/ Published in: Bash
My additions to the textdrive .profile
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# prompt export PS1="\n\h:\w \u\$ " export PS2="\n>" # environment variables export CLICOLOR=1 export EDITOR=`which nano` # repository variables export CVSEDITOR=$EDITOR export CVS_RSH=`which ssh` export SVN_EDITOR=$EDITOR # aliases alias l="ls -l" alias ll="ls -al" alias lf="ls -F" alias ~="cd ~" alias ..="cd .." alias reload="source ~/.profile"