Curl command parameters

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
What does the

command mean? what does the L in the parameter, setup_6.x in url, |, sudo-E bash-all mean.

Feb.28,2021

curl -s 
     -L 30X

setup_6.x is part of the link
| sudo-E bash- refers to piping CURL output (downloaded script) using Root permissions to run with Bash

Menu