DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: B T

⟦4b02ff4b1⟧ TextFile

    Length: 2150 (0x866)
    Types: TextFile
    Names: »Bashrc«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦ca1f037a2⟧ »./bash-1.04.tar.Z« 
        └─⟦46465a4db⟧ 
            └─⟦this⟧ »bash-1.04/examples/Bashrc« 

TextFile

# Bourne Again SHell init file.
#
# Files you make look like rw-rw-r
umask 002

# Don't make useless coredump files.  If you want a coredump,
# say "ulimit -c unlimited" and then cause a segmentation fault.
ulimit -c 0

# Sometime, there are lots of places that one can find man pages.
export MANPATH=/usr/local/man:/usr/man
export TEXINPUTS=.:$HOME/bin/tex:$HOME/bin:/usr/lib/tex/macros
HOST=$(/bin/hostname)

# Where's the Gnu stuff at?
GNU=/usr/gnu/bin
X11=/usr/bin/X11

# Get the type of this machine.
if [ -x /bin/arch ]; then
  MACH=`/bin/arch`
else
  MACH=vax
  GNU=$VAXGNU
fi

UTIL_PATH=$GNU:$X11

STANDARD_PATH=/usr/local/bin:/usr/ucb:/bin:/usr/bin:/usr/etc:/etc:/usr/games

if [ "$MY_PATH" = "" ]; then
  MY_PATH=""
fi

if [ -d $HOME/bin/$MACH ]; then
  MY_PATH=$MY_PATH:$HOME/bin/$MACH
fi

if [ -d $HOME/bin ]; then
  MY_PATH=$MY_PATH:$HOME/bin
fi

# If you are using a Bash shell, then you probably want it as your shell
# in X windows as well.  Yes?  You can always change this in ~/.bash_aliases.
export XSHELL=/usr/gnu/bin/bash

PATH=.:$MY_PATH:$UTIL_PATH:$STANDARD_PATH

if [ "$PS1" ]; then

  # Here are a couple of functions to make csh user's lives easier.
  setenv () {
    export $1="$2"
  }

  unsetenv () {
    unset $*
  }

  # Set ignoreeof if you don't want EOF as the sole input to the shell to
  # immediately signal a quit condition.  This only happens at the start
  # of a line if the line is empty, and you haven't just deleted a character
  # with C-d.  I turn this on in ~/.bash_profile so that only login shells
  # have the right to be obnoxious.
  # ignoreeof=

  # Set auto_resume if you want TWENEX style behaviour for command names.
  auto_resume=

  # Set notify if you want to be asynchronously notified about background
  # job completion.
  notify=

  # Make it so that failed `exec' commands don't flush this shell.
  no_exit_on_failed_exec=

  if [ ! "$LOGIN_SHELL" ]; then
    PS1="\u@\h$ "
  fi

  HISTSIZE=256
  MAILCHECK=60

  # A couple of default aliases.
  alias j='jobs -l'
  alias po=popd
  alias pu=pushd
  alias ls='ls -F'

  if [ -f ~/.bash_aliases ]; then
    source ~/.bash_aliases
  fi
fi