Skip to content

Commit

Permalink
add INSTALLERS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
weikinhuang committed Dec 9, 2014
1 parent b74a3e6 commit 99c5364
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 22 deletions.
58 changes: 58 additions & 0 deletions INSTALLERS.md
@@ -0,0 +1,58 @@

# weikinhuang's dotfiles installers

## All platforms

Installing ack to `~/bin`
```bash
~/.dotenv/other/install-ack-all.sh
```

Installing youtube-dl to `~/bin`
```bash
~/.dotenv/other/install-youtube-dl-all.sh
```

## Windows/cygwin

Install cygwin (2 step)

Download install script: [/dotenv/other/setup-cygwin.cmd](https://raw.githubusercontent.com/weikinhuang/dotfiles/master/dotenv/other/setup-cygwin.cmd) and run as administrator.

Installing php on windows (global install)
```bash
~/.dotenv/other/install-php-windows.sh
```

Installing nodejs on windows (global install)
```bash
~/.dotenv/other/install-nodejs-windows.sh
```

## OSX

Installing homebrew
```bash
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```

Installing core utilties
```bash
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils

# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew install findutils

# Install Bash 4
brew install bash bash-completion

# Install git
brew install git

# Install wget with IRI support
brew install wget --enable-iri
```

## Linux

26 changes: 4 additions & 22 deletions README.md
Expand Up @@ -104,7 +104,7 @@ on ssh ------------┐

When logged in as root user
```bash
as root -----------------------------------------┐
as root -------------------------------------------
[06:00:00 0.00 root@host dir<4|2.4Mb> (կ master %)]μ
```

Expand Down Expand Up @@ -262,7 +262,7 @@ Use to determine a projects directory (shortcut with `p`)
export PROJECT_DIR='~/Documents/Projects'
```

Use to wrap common applications with cli usage (cygwin)
Use to wrap common applications with cli usage (cygwin) will load [dotenv/other/cygwin-exewrappers.sh](dotenv/other/cygwin-exewrappers.sh)

```bash
export __CYG_LOAD_WRAPPERS=true
Expand All @@ -274,24 +274,6 @@ Use to reduce load poll time (cygwin)
export __ps1_var_loadreloadtime=15
```

## Installers (will install only to `~/bin`)
## [Installers](INSTALLERS.md)

Installing php on windows (global install)
```bash
~/.dotenv/other/install-php-windows.sh
```

Installing nodejs on windows (global install)
```bash
~/.dotenv/other/install-nodejs-windows.sh
```

Installing ack
```bash
~/.dotenv/other/install-ack-all.sh
```

Installing youtube-dl
```bash
~/.dotenv/other/install-youtube-dl-all.sh
```
[See available installers.](INSTALLERS.md)

0 comments on commit 99c5364

Please sign in to comment.