我使用lftp 的mirror 命令从FTP 服务器检索数据。我想排除父目录中的 zip 文件,但不排除子目录中的 zip 文件。
此命令:
lftp ftp://server_ip -e "mirror -a -e --exclude-glob '*.zip' / /where/to/put/the/data ; quit"
排除所有 zip 文件,无论它们位于何处
这一个:
lftp ftp://server_ip -e "mirror -a -e --exclude-glob '/*.zip' / /where/to/put/the/data ; quit"
不再排除任何 zip 文件。
有人可以帮忙吗?