rsync 排除文件夹内容但仍创建文件夹
rsync exclude folder contents but still create folder
我有我的申请:
folder1
folder2
cache
something_cached1
something_cached2
现在我想将我的项目同步到服务器
但是
如果我这样做
--exclude=cache
该文件夹将不存在于服务器中,因此,我会在应用程序尝试写入不存在的位置时收到错误消息
很简单,我明白了,
只需添加:
--exclude 'cache/*'
我有我的申请:
folder1
folder2
cache
something_cached1
something_cached2
现在我想将我的项目同步到服务器
但是
如果我这样做
--exclude=cache
该文件夹将不存在于服务器中,因此,我会在应用程序尝试写入不存在的位置时收到错误消息
很简单,我明白了, 只需添加:
--exclude 'cache/*'