I need to run the following command in Red Hat Linux, but I don't have wget installed.
wget -q -O | bash What's the equivalent for curl?
1 Answer
This should do it.
curl -s | sh EDIT: removed -O: Not needed as it's piping to the bash, as @gravity's comment mentions.
1