It has become common trend to use shell scripts from the web and directly run them:
bash <(curl -sL some.random.website.com)
I always view the script before running them. However, shell scripts are always more cryptic than reading a regular program. And yet, they are extremely powerful. They can do so much without the user even noticing.
I have always wondered if there are any tools to verify/scan such scripts.
Also, there have been anti-viruses for decades for verifying "closed-source" code, then how come there are so few/none to verify open-source code?