vitorbaptista / shellshare

Live terminal broadcasts
https://shellshare.net
Apache License 2.0
223 stars 23 forks source link

Add space before the semi colon to install snippet #29

Closed amercader closed 8 years ago

amercader commented 8 years ago

If you copy the current linux install instruction:

wget -qO shellshare http://get.shellshare.net; python shellshare

... and paste it into the terminal you get the semicolon as part of the URL (at least on zsh):

> wget -qO shellshare http://get.shellshare.net\; python shellshare

This will download an empty shellshare file and nothing will happen.

If you add a space then it works fine:

wget -qO shellshare http://get.shellshare.net ; python shellshare
vitorbaptista commented 8 years ago

Thanks for the report, @amercader. I changed the ; for &&, which fixes this and is better overall (as python is only executed if the downloading is successful).

:beers:

amercader commented 8 years ago

Cheers mate