]> git.pld-linux.org Git - packages/bash.git/blame - bashrc
- Check if file is readable (pointed by blues)
[packages/bash.git] / bashrc
CommitLineData
5266f627 1# /etc/bashrc
2
3# System wide functions and aliases
4# Environment stuff goes in /etc/profile
5
4556fc70 6# For some unknown reason bash refuses to inherit
7# PS1 in some circumstances that I can't figure out.
8# Putting PS1 here ensures that it gets loaded every time.
9PS1="[\u@\h \W]\\$ "
10
f059f7fe 11alias which="type -p"
4556fc70 12
15b916fe 13for i in /etc/shrc.d/*.sh ; do
86984e52 14 [ -r $i ] && . $i
4556fc70 15done
238a827d 16unset i
This page took 0.072862 seconds and 4 git commands to generate.