Stripping out anything unused in .oh-my-zsh

This commit is contained in:
Nathan Stilwell 2017-04-12 00:28:27 -04:00
commit ed2ef5a2b0
No known key found for this signature in database
GPG key ID: 47459090870D1391
22 changed files with 22 additions and 595 deletions

View file

@ -11,7 +11,6 @@ function atlas_usage {
list show what host configs exist
show show which config is linked
USAGE
}
@ -46,7 +45,7 @@ function atlas_map {
}
function atlas_show {
if [ -d "/Users/nstilwell/.hosts" ] && [ -e "/Users/nstilwell/.hosts/$1" ]; then
if [ -d "/Users/nstilwell/.hosts" ] && [ -e "/Users/nstilwell/.hosts/" ]; then
head -n 4 /etc/hosts;
else
echo "Atlas not initialized";
@ -55,7 +54,7 @@ function atlas_show {
}
function atlas_list {
if [ -d "/Users/nstilwell/.hosts" ] && [ -e "/Users/nstilwell/.hosts/$1" ]; then
if [ -d "/Users/nstilwell/.hosts" ] && [ -e "/Users/nstilwell/.hosts/" ]; then
ls -F ~/.hosts | grep -v /$;
else
echo "Atlas not initialized";