cp /some/path/file /another/path/ && ln -sf /another/path/file /some/path/
如果没有,那么为一堆文件执行此 *** 作的最佳方法是什么?
解决方法 一个小小的注意事项是,您可以使用两次来使命令实际上不移动数据(假设两个路径都在同一个文件系统上).ln /some/path/file /another/path/ && ln -sf /another/path/file /some/path/
但我假设您要将/ some / path /的内容移动到另一个磁盘,然后创建指向新文件的链接,以便“没有人”注意到.
for f in `ls /some/path/`; do ln /some/path/$f /another/path/ && ln -sf /another/path/$f /some/path; done
将其包装在bash函数中:
function cpln { for f in `ls ` do ln /$f && ln -sf /$f done}总结
以上是内存溢出为你收集整理的linux – 移动文件并留下软链接全部内容,希望文章能够帮你解决linux – 移动文件并留下软链接所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)