Redirect output of command with heredoc

蹲街弑〆低调 提交于 2019-11-28 09:05:31

问题


I have a command like this:

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

Now I'd like to pipe the output of that to zenity --progress, but I can't find a place to put it.

# 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 

回答1:


This should do the trick:

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


来源:https://stackoverflow.com/questions/10894554/redirect-output-of-command-with-heredoc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!