在远程服务器上运行命令的Fish脚本



如果我使用sh脚本,我将得到以下代码:

ssh user@host <<-'ENDSSH'
#command 1
#command 2
ENDSSH

鱼的类似物是什么?

fish没有heredocs(参见https://fishshell.com/docs/current/design.html)

echo '#command 1
#command 2' | ssh user@host

set commands 
"command 1" 
"command 2"
printf "%sn" $commands | ssh user@host

相关内容

  • 没有找到相关文章

最新更新