workstation/roles/home-cli/files/bash_profile

19 lines
231 B
Bash

#!/usr/bin/env bash
if [ -r "$HOME/.profile" ]
then
. "$HOME/.profile"
fi
case "$-" in
*i*)
# Shell is interactive.
if [ -r "$HOME/.bashrc" ]
then
. "$HOME/.bashrc"
fi
;;
*)
# Shell is not interactive.
return 1
;;
esac