mrjamin
May 9, 2004, 07:55 PM
Bit nerdy, but great for picking up a few bash tricks :)
here's mine:
export TERM=xterm-color
# prints the date on login
echo `date`
# aliases
alias now="echo `date`"
alias cls="clear"
# nano is a GNU equivalent to pico, but with a million more filters
alias pico="/usr/local/bin/nano"
alias df="df -h"
# print the free disk space of local filesystems on login
df -lh
# fink stuff:
. /sw/bin/init.sh
here's mine:
export TERM=xterm-color
# prints the date on login
echo `date`
# aliases
alias now="echo `date`"
alias cls="clear"
# nano is a GNU equivalent to pico, but with a million more filters
alias pico="/usr/local/bin/nano"
alias df="df -h"
# print the free disk space of local filesystems on login
df -lh
# fink stuff:
. /sw/bin/init.sh
