gpt4 book ai didi

bash - 使用 heredoc 重定向命令输出

转载 作者:行者123 更新时间:2023-11-29 09:17:43 25 4
gpt4 key购买 nike

我有这样的命令:

sftp user@host <<EOF
put file.txt
exit
EOF

现在我想将它的输出通过管道传输到 zenity --progress,但我找不到放置它的地方。

# SFTP doesn't work anymore
sftp user@host | zenity --progress <<EOF
put file.txt
exit
EOF

# Invalid syntax, no end of heredoc
sftp user@host <<EOF
put file.txt
exit
EOF | zenity --progress

# Not picked as part of the command
sftp user@host <<EOF
put file.txt
exit
EOF
| zenity --progress

# Does not help
sftp user@host | zenity --progress <<EOF
put file.txt
exit
EOF\
| zenity --progress

最佳答案

这应该可以解决问题:

sftp user@host <<EOF | zenity --progress
...
EOF

关于bash - 使用 heredoc 重定向命令输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10894554/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com