最佳答案
我知道如何执行这样的远程 Bash 脚本:
curl http://example.com/script.sh | bash
或者
bash < <( curl http://example.com/script.sh )
结果是一样的。
但是如果我需要将 争论传递给 bash 脚本呢:
./script.sh argument1 argument2
我尝试了几种类似的可能性,但都没有成功:
bash < <( curl http://example.com/script.sh ) argument1 argument2