You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
tar -x -z -f
) to gunzip the tar.gz file.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
The text was updated successfully, but these errors were encountered: