bin/shrc/bashrc

15 lines
201 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
2018-11-22 02:44:26 -06:00
# shellcheck disable=1090
source ~/.profile
fi