Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个脚本来使用wput自动上传包含许多子目录和文件的目录
使用 wput 时是否可以忽略某些文件夹(如 .svn 文件夹)上传?
仔细查看手册页给了我以下完美的解决方案。
find . ! -type d | grep -v \.svn | wput ftp://user:password*@ftp.example.com/ -i -
此博客文章中提供了更多解释。