summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-11-27 18:01:11 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-11-27 18:01:11 -0500
commit73573a7bfc902994a37e03e492dae82d5d181533 (patch)
treec690d21805fe67d79a35b134713e1c047152d4a7
parent46b77a182153f303471a1ad28ab76e5953c16da1 (diff)
.bootstrap.min.sh is a script to get a minimal acceptable environment for me.
-rw-r--r--.bootstrap.min.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/.bootstrap.min.sh b/.bootstrap.min.sh
new file mode 100644
index 0000000..eed85b5
--- /dev/null
+++ b/.bootstrap.min.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+files='.bashrc .bash_aliases .gitconfig .profile'
+for file in $files; do
+ rm -f $file
+ wget http://gitorious.org/lukeshu-dotfiles/lukeshu-dotfiles/blobs/raw/master/$file;
+done