소스 검색

Merge pull request #420 from bfirsh/inline-installation-commands

Collapse install instructions into single line
Aanand Prasad 11 년 전
부모
커밋
6dab8c1b89
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      docs/install.md

+ 2 - 4
docs/install.md

@@ -16,13 +16,11 @@ Docker has guides for [Ubuntu](http://docs.docker.io/en/latest/installation/ubun
 
 Next, install Fig. On OS X:
 
-    $ curl -L https://github.com/docker/fig/releases/download/0.5.2/darwin > /usr/local/bin/fig
-    $ chmod +x /usr/local/bin/fig
+    curl -L https://github.com/docker/fig/releases/download/0.5.2/darwin > /usr/local/bin/fig; chmod +x /usr/local/bin/fig
 
 On 64-bit Linux:
 
-    $ curl -L https://github.com/docker/fig/releases/download/0.5.2/linux > /usr/local/bin/fig
-    $ chmod +x /usr/local/bin/fig
+    curl -L https://github.com/docker/fig/releases/download/0.5.2/linux > /usr/local/bin/fig; chmod +x /usr/local/bin/fig
 
 Fig is also available as a Python package if you're on another platform (or if you prefer that sort of thing):