$ find /opt/backup/test -name "*.gz" -exec smbclient -A \
/opt/backup/smbclient_authentication.txt //1.1.1.1/test -c put '{}' \;
目录下有多个目录和其他文件*.gz
,我想用 smbclient 移动通过 find 找到的文件。当然,这不起作用,因为我错过了最后一点。与共享的连接有效,并且find
有效,只是最后一点无效。有任何想法吗?
$ find /opt/backup/test -name "*.gz" -exec smbclient -A \
/opt/backup/smbclient_authentication.txt //1.1.1.1/test -c put '{}' \;
目录下有多个目录和其他文件*.gz
,我想用 smbclient 移动通过 find 找到的文件。当然,这不起作用,因为我错过了最后一点。与共享的连接有效,并且find
有效,只是最后一点无效。有任何想法吗?
您可以使用xargs从输入流创建参数
xargs find /opt/backup/test -name "*.gz" \
| smbclient -A /opt/backup/smbclient_auth.txt //1.1.1.1/test -c put
如果我理解正确,除了通过 smb 传输之外,您还想在本地移动文件。你可以:
set -e #<- abort on error
for f in `find -name '*.gz' -or -name '*.zip'`; do
smbclient -A /opt/backup/smbclient_auth.txt //1.1.1.1/test -c put "$f"
mv "$f" ./transfered/
done