home/.bashrc

15 lines
201 B
Bash
Raw Permalink Normal View History

2019-02-05 12:44:41 -06:00
#!/bin/bash
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Source .profile
if [ -r ~/.profile ]; then
# shellcheck disable=1090
source ~/.profile
fi