Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 415 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 415 Bytes

Setup

# Clone the repo to a directory of your choice
md mydir && cd mydir
git clone -------------- .

# Create soft links from bin path to the shell-scripts
for script in $( ls src/bash );
  do sudo ln -s src/$script /usr/local/bin;
done

# Create soft links from share path relative to bin path to templates
for template in $( ls src/templates );
  do sudo ln -s src/$template /usr/local/share;
done