Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vim-node README.md install instructions update #45

Open
dmwaff opened this issue Oct 31, 2017 · 0 comments
Open

vim-node README.md install instructions update #45

dmwaff opened this issue Oct 31, 2017 · 0 comments

Comments

@dmwaff
Copy link

dmwaff commented Oct 31, 2017

https://github.com/moll/vim-node
README.md

Using Wget:
wget https://github.com/moll/vim-node/archive/master.tar.gz -O- | tar -xf- --strip-components 1 -C ~/.vim/bundle/node

  1. Requires tar's -z option (tar -x -z -f ) to gunzip the tar.gz file.
  2. Readability recommendation only, add space between wget -O option and stdout (-).
  3. Readability recommendation only, add space between tar -f option and stdin (-).

Using long options:
wget --output-document=- https://github.com/moll/vim-node/archive/master.tar.gz | tar --extract --gunzip --strip-components 1 --file=- --directory=~/.vim/bundle/node
OR
Using short options:
wget -O - https://github.com/moll/vim-node/archive/master.tar.gz | tar --strip-components 1 -xzf - -C ~/.vim/bundle/node

Cheers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant