执行远程shell

source方式

& source <(curl -s localhost/test.sh)

curl方式

$ sh -c "$(curl -fsSL https://abc.com/shell.sh)"

wget方式

$ sh -c "$(wget https://abc.com/shell.sh -O -)"