Hacker News new | ask | show | jobs
by theseoafs 3626 days ago
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

1 comments

Or use curl's built-in options:

  curl -O ...
or

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