将多个形如00_000_00_apple的文件夹创建名为apple的软连接
现在我的文件夹A中,文件夹名如:00_000_00_apple,00_000_01_orange,00_000_02_bananer
要在另外一个文件夹B中创建对应软连接:apple,orange,bananer
ls -1 A |xargs -i -t sh -c 'ln -s {} $(basename {}|cut -d '_' -f 3-)'
本文来自博客园,作者:海_纳百川,转载请注明原文链接:https://www.cnblogs.com/chentiao/p/17786476.html,如有侵权联系删除