Skip to content
This repository has been archived by the owner on Oct 26, 2018. It is now read-only.

Latest commit

 

History

History
13 lines (9 loc) · 402 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 402 Bytes

A little like dotfiles.

Usage

  1. cd ~ (currently has to be at root: see #1)
  2. git clone git@github.com:stilist/shell_enhancements.git

Add this to your .bash_profile (or .profile, if you’re not using Bash):

for file in ~/shell_enhancements/*.sh ; do
	[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;