Board logo

标题: [问题求助] 以文件名为条件建立文件夹的shell脚本编写 [打印本页]

作者: hacker85    时间: 2012-6-4 16:23     标题: 以文件名为条件建立文件夹的shell脚本编写

http://bbs.bathome.net/viewthrea ... mp;extra=#pid109951

链接处的内容是win平台的问题,现已在4#得到了解决。
由初期的for循环中的delims问题最终定位到%%~na的有效应用,实现了问题的最终解决。

此帖是将思维扩展一下,到了linux平台下,结合链接处1#的具体内容,大家可否写一下脚本代码。
作者: seesea    时间: 2012-7-10 16:54

  1. [seesea@bathome test]$ echo "aa" > atimetool_1.9.6.deb
  2. [seesea@bathome test]$ echo "aa" > atimetool_1.9.7.deb
  3. [seesea@bathome test]$ ls
  4. atimetool_1.9.6.deb  atimetool_1.9.7.deb
  5. [seesea@bathome test]$ for f in *; do mkdir ${f/.deb/} && mv $f ${f/.deb/}; done;
  6. [seesea@bathome test]$ ls
  7. atimetool_1.9.6  atimetool_1.9.7
  8. [seesea@bathome test]$ ls *
  9. atimetool_1.9.6:
  10. atimetool_1.9.6.deb
  11. atimetool_1.9.7:
  12. atimetool_1.9.7.deb
  13. [seesea@bathome test]$ for d in *; do mv $d/* .; rm -rf $d; done;
  14. [seesea@bathome test]$ ls
  15. atimetool_1.9.6.deb  atimetool_1.9.7.deb
复制代码

作者: seesea    时间: 2012-7-10 16:54

  1. # 移入目录
  2. [seesea@bathome test]$ for f in *; do mkdir ${f/.deb/} && mv $f ${f/.deb/}; done;
  3. # 移出目录
  4. [seesea@bathome test]$ for d in *; do mv $d/* .; rm -rf $d; done;
复制代码

作者: hacker85    时间: 2012-12-12 09:31

谢谢楼上两位,我得消化一阵,shell脚本的功底还是不太好。




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2