标签: linux curl amazon-ec2 wget cloud-init
我知道要运行远程脚本,我们可以使用
curl -s <remote-script-url> | python或wget -O - <remote-script-url> | bash
curl -s <remote-script-url> | python
wget -O - <remote-script-url> | bash
但是,我们可以使用shebang运行脚本,而不是明确指定解释器。
我的用例是,脚本来自可信来源 - 可能是python或bash,我从EC2用户数据运行它。 如果以上是不可能的,是否可以使用cloud-config实现相同的目标(脚本将在s3中)
提前致谢