我想复制一切从一个文件夹递归,但文件从另一个目录符号链接,我该如何实现?
答案1
我想我找到了解决办法
rsync -a --exclude='.*' --no-links . destfolder
我在我的 zsh 上测试过,它从当前文件夹递归复制除符号链接和隐藏文件之外的所有内容(奖励)
答案2
怎么样:
find ./ -maxdepth 1 -type f -exec cp {} destfolder \;
?
(或者您的意思是“除了‘其他地方’的符号链接文件?)
我想复制一切从一个文件夹递归,但文件从另一个目录符号链接,我该如何实现?
我想我找到了解决办法
rsync -a --exclude='.*' --no-links . destfolder
我在我的 zsh 上测试过,它从当前文件夹递归复制除符号链接和隐藏文件之外的所有内容(奖励)
怎么样:
find ./ -maxdepth 1 -type f -exec cp {} destfolder \;
?
(或者您的意思是“除了‘其他地方’的符号链接文件?)