|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 356 (0x164) Types: TextFile Names: »Bash_profile«
└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89 └─⟦ca1f037a2⟧ »./bash-1.04.tar.Z« └─⟦46465a4db⟧ └─⟦this⟧ »bash-1.04/examples/Bash_profile«
# Startup file for bash login shells. # default_dir=/usr/gnu/lib/ if [ "$PS1" ]; then PS1='\u@\h(\#)$ ' ignoreeof=3 fi LOGIN_SHELL=true # If the user has her own init file, then use that one, else use the # canonical one. if [ -f ~/.bashrc ]; then source ~/.bashrc else if [ -f ${default_dir}Bashrc ]; then source ${default_dir}Bashrc; fi fi