如何使用smbclient将管道的结果放到Samba驱动器中?

时间:2016-11-02 17:03:28

标签: libsmbclient

我想做这样的事情?

echo "test"  | smbclient //server/share -c "cd /target/location/;put <RESULT_FROM_PIPE> <AS_THIS_FILENAME>"

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

最后,这是我找到的解决方案:

echo "test"  | smbclient //server/share -c "cd /target/location/;put - <NEW_THIS_FILENAME>"

诀窍在短划线-中,重定向stdin