Hacker News new | ask | show | jobs
by auvi 3626 days ago
the best way to get rid off the discomfort is to first check the shell script: curl -fsSL https://raw.githubusercontent.com/rgcr/m-cli/master/install.... | pbcopy

Then you can paste it in a text editor and if it is not too long you can verify the script.

And as this one is on github you can take a look directly.

1 comments

Just pipe the script to a file so you can read it without having to copy-paste. :)

curl -fsSL https://raw.githubusercontent.com/rgcr/m-cli/master/install..... > install.sh

Or use curl's built-in options:

  curl -O ...
or

  curl -o install.sh ...
Or pbpaste | sh