-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hazen
committed
Apr 11, 2019
1 parent
58ced01
commit 74e65b5
Showing
3 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
Personal dotfiles repo. Includes: | ||
* vim | ||
* bash | ||
* docker | ||
|
||
|
||
|
||
|
@@ -14,7 +15,7 @@ Personal dotfiles repo. Includes: | |
Run 'all' as a parameter to setup everything; otherwise specify which dot file to setup. | ||
|
||
> ./install.sh (vim|bash|all) | ||
> ./install.sh (vim|bash|docker|all) | ||
|
||
# Vim | ||
|
@@ -143,6 +144,10 @@ Other aliases: | |
* psg - ps aux | grep | ||
|
||
|
||
# Docker | ||
|
||
Builds docker ctf image. | ||
|
||
# Help | ||
|
||
Any bugs/concerns/issues/etc please email [email protected]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
# Script will install dot-files based on input | ||
# | ||
# Example: ./install.sh vim bash | ||
# Example: ./install.sh vim bash docker | ||
# | ||
# [email protected] | ||
|
||
|
@@ -105,6 +105,7 @@ function allsetup() { | |
echo "all" | ||
vimsetup | ||
bashsetup | ||
dockersetup | ||
} | ||
|
||
### Verify and run input selections | ||
|
@@ -113,8 +114,9 @@ for i in $@; do | |
case "$i" in | ||
vim) vimsetup;; | ||
bash) bashsetup;; | ||
docker) dockersetup;; | ||
all) allsetup;; | ||
*) echo "Invalid name. Names: vim, bash, all";; | ||
*) echo "Invalid name. Names: vim, bash, docker, all";; | ||
esac | ||
done | ||
|
||
|