-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbash_profile
More file actions
24 lines (18 loc) · 859 Bytes
/
bash_profile
File metadata and controls
24 lines (18 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# vim: ft=sh ts=4 sw=3
# To the extent possible under law, the author(s) have dedicated all
# copyright and related and neighboring rights to this software to the
# public domain worldwide. This software is distributed without any
# warranty.
# ~/.bash_profile: executed by bash(1) for login shells.
# The copy in your home directory (~/.bash_profile) is yours,
# please feel free to customise it to create a shell
# environment to your liking. If you feel a change
# would be benifitial to all, please feel free to send
# a pull request to the dotfiles Github repository.
# User dependent .bash_profile file
# Source the users profile if it exists.
# shellcheck disable=SC1090
[[ -f "${HOME}/.profile" ]] && \. "${HOME}/.profile";
# Source the users bashrc if it exists.
# shellcheck disable=SC1090
[[ -f "${HOME}/.bashrc" ]] && \. "${HOME}/.bashrc";