It might be beneficial to use this command below so more shells can run the command without having to change the command.
bash -c ""
This will run on at least fish
, zsh
and bash
shell
bash -c "bash <(curl -sfL "https://raw.githubusercontent.com/bitrise-io/bitrise-add-new-project/master/_scripts/run.sh") --api-token "token" --org "org" --public "public" --website"
This will only run on fish
bash (curl -sfL "https://raw.githubusercontent.com/bitrise-io/bitrise-add-new-project/master/_scripts/run.sh" | psub) --api-token "token" --org "org" --public "public" --website
This will run on bash
and zsh
bash <(curl -sfL "https://raw.githubusercontent.com/bitrise-io/bitrise-add-new-project/master/_scripts/run.sh") --api-token "token" --org "org" --public "public" --website