繁体   English   中英

Shell 脚本循环在远程 SSH 上不起作用

[英]Shell Script Looping not working while on remote SSH

我一直在尝试通过 SSH 远程命令访问时进行循环工作,但它不起作用。 该命令在主机中直接运行时有效。

scp file root@${SERVER}:/tmp
ssh ${SERVER} "
while IFS= read -r line; do
   echo "$line"
done </tmp/file
"

我曾尝试在主脚本中使用单引号,但它会导致错误。

bash: line n: warning: here-document at line n delimited by end-of-file 

任何建议将不胜感激。

更新

测试文件

1
2
3
4
5
6

脚本测试

SERVER='client'
ssh ${SERVER} '
echo "inside remote ClientServer"
echo "cat testfile"
cat /tmp/testfile

while read line; do
   echo "${line}"
done <</tmp/testfile
'
echo "Back to MasterServer..."

终端结果

root@server]# ./test
S
Kernel 4.14.35-1902.10.7.el7uek.x86_64 on an x86_64

inside remote ClientServer
cat testfile
1
2
3
4
5
6
bash: line 8: warning: here-document at line 8 delimited by end-of-file (wanted `/tmp/testfile')
Back to MasterServer...

谢谢你。

您可能希望使用单引号逐字传递远程命令:

scp file root@${SERVER}:/tmp
ssh ${SERVER} '
while IFS= read -r line; do
   echo "$line"
done </tmp/file
'

确保您使用的是</tmp/file ,而不是<</tmp/file 序列<<用于启动此处的文档,在这种情况下这不是您想要的。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM