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

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hhoover committed Apr 14, 2011
0 parents commit 28dee23
Show file tree
Hide file tree
Showing 8 changed files with 2,394 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@
# OS generated files #
######################
.DS_Store?
ehthumbs.db
Icon?
Thumbs.db
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions README.md
@@ -0,0 +1,26 @@
<h1>LazyScripts</h1>

<p>This is a set of bash shell functions to simplify and automate specific routine tasks, as well as some more specialized ones.</p>

<p>Compatibility - RHEL 5, CentOS 5, Ubuntu 10.04, Ubuntu 10.10</p>

<h3>Contributors:</h3>
* Hart Hoover
* Tim Galyean
* Kale Stedman
* Trey Feagle
* Jason Dunsmore
* Jacob Walcik
* Farid Saad

<h3>How to use:</h3>

git clone https://hhoover@github.com/hhoover/lazyscripts. /root/.lazyscripts/tools
cd /root/.lazyscripts/tools
source ls-init.sh && lslogin

<p>You can also use this bash function upon login as root:</p>

function lsgethelper() { LZS_PREFIX="/root/.lazyscripts/tools"; LZS_URLPREFIX="https://hhoover@github.com/hhoover/lazyscripts.git"; LZS_APP="$LZS_PREFIX/ls-init.sh"; if [ -e $LZS_APP ]; then rm -rf $LZS_PREFIX; fi; echo "Installing LazyScripts..."; cd ~ ; git clone $LZS_URLPREFIX $LZS_PREFIX > /dev/null 2>&1 ; source $LZS_APP; } lsgethelper && lslogin

<p>Enjoy!</p>

0 comments on commit 28dee23

Please sign in to comment.