Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 365 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 365 Bytes

Placing my Bash set-up files on GitHub.

Install

Say you sync down all these files in ~ directory, then you need to add following code to your .profile (or .bashrc) to ensure everything gets picked-up

for file in ~/dotfiles/{shopts,general,aliases,custom}.bash; do
	if [ -f "${file}" ] ; then
		echo "Sourcing ${file}"
		source "${file}"
	fi
done