|
Revision 3544, 508 bytes
(checked in by mrkn, 13 months ago)
|
|
dotfiles/bash/mrkn-bash_profile, dotfiles/bash/mrkn-bashrc: bash configuration for mrkn.
|
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # -*- mode: sh; coding: utf-8; -*- |
|---|
| 2 | # ~/.bash_profile: executed by bash(1) for login shells. |
|---|
| 3 | # see /usr/share/doc/bash/examples/startup-files for examples. |
|---|
| 4 | # the files are located in the bash-doc package. |
|---|
| 5 | # |
|---|
| 6 | # $Id$ |
|---|
| 7 | |
|---|
| 8 | if [ -f /etc/profile ]; then |
|---|
| 9 | . /etc/profile |
|---|
| 10 | fi |
|---|
| 11 | |
|---|
| 12 | # the default umask is set in /etc/login.defs |
|---|
| 13 | #umask 022 |
|---|
| 14 | |
|---|
| 15 | # include .bashrc if it exists |
|---|
| 16 | if [ -f ~/.bashrc ]; then |
|---|
| 17 | . ~/.bashrc |
|---|
| 18 | fi |
|---|
| 19 | |
|---|
| 20 | # set PATH so it includes user's private bin if it exists |
|---|
| 21 | if [ -d ~/bin ] ; then |
|---|
| 22 | PATH=~/bin:"${PATH}" |
|---|
| 23 | fi |
|---|