-
-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Description
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
- Requires tar's -z option (
tar -x -z -f) to gunzip the tar.gz file. - Readability recommendation only, add space between wget -O option and stdout (-).
- 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
Metadata
Metadata
Assignees
Labels
No labels