如果我使用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