Hi I am trying to run the bash command in shell script but couldn't completely figure out how as I have very minimal knowledge with Linux/Unix.
Here is the command :
bash <(curl -s https://raw.githubusercontent.com/TitouanVanBelle/XCTestHTMLReport/master/install.sh) '1.0.0'
I am able to execute the command in shell without the version like this:
/bin/bash -c "$(curl -s https://raw.githubusercontent.com/TitouanVanBelle/XCTestHTMLReport/master/install.sh)"
but if I try to pass the version like this:
/bin/bash -c "$(curl -s https://raw.githubusercontent.com/TitouanVanBelle/XCTestHTMLReport/master/install.sh) '1.0.0'"
or
/bin/bash -c "$(curl -s https://raw.githubusercontent.com/TitouanVanBelle/XCTestHTMLReport/master/install.sh '1.0.0')"
it won't execute the command. Can someone help me with this