# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). PATH="/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games" if [ "$BASH" ]; then PS1='\u@\h:\w\$ ' else if [ "`id -u`" -eq 0 ]; then PS1='# ' else PS1='$ ' fi fi export PATH PS1 umask 022 alias usage='for i in *; do du -sh $i; done' # To set up my nice environment, where cleaning a file takes it to # a special place in /tmp, after which one can blast the garbage # into obscurity. # Vikram, Sun Mar 31 23:30:07 IST 2002 alias garbage.init='mkdir /tmp/garbage-$USER 2>&1 >> /dev/null && chmod 700 /tmp/garbage-$USER' function clean() { mv -vf *~ *# .*# .*~ $@ /tmp/garbage-$USER/ 2>/dev/null; }; alias blast='rm -Rvf /tmp/garbage-$USER/* 2>/dev/null' export LIBGL_DRIVERS_PATH="/usr/local/X11R6/lib/modules/dri" export PATH="$PATH:/usr/local/j2sdk1.3.1/bin" alias ls='ls --color=yes -p' alias rm='rm -i' alias mv='mv -i' export COLUMNS=128