Closed gtsop closed 3 years ago
The syntax of the curl command seems to be wrong:
$ curl -o https://raw.githubusercontent.com/beyondmeh/piu/master/piu && sudo mv piu /usr/local/bin && sudo chmod +x /usr/local/bin/piu curl: no URL specified! curl: try 'curl --help' or 'curl --manual' for more information
Seems like it should be like so:
curl https://raw.githubusercontent.com/beyondmeh/piu/master/piu -o piu && sudo mv piu /usr/local/bin && sudo chmod +x /usr/local/bin/piu
or
wget https://raw.githubusercontent.com/beyondmeh/piu/master/piu && sudo mv piu /usr/local/bin && sudo chmod +x /usr/local/bin/piu
The syntax of the curl command seems to be wrong:
Seems like it should be like so:
or