bin/shrc/bashrc

14 lines
174 B
Bash
Raw Normal View History

#!/bin/bash
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Source .profile
if [ -r ~/.profile ]; then
source ~/.profile
fi