copy files to special directory.

来源:互联网 发布:极光网络有魔戒世界吗 编辑:程序博客网 时间:2024/04/29 02:33

 find  3G_LOG/  -type d | awk -F/ '{if($2 != "" ) print $1"/"$2}' |   uniq

 

$ find  3G_LOG/  -type d
3G_LOG/
3G_LOG/dataM
3G_LOG/dataM/Debug
3G_LOG/dataM/Release
3G_LOG/Driver
3G_LOG/Driver/Debug
3G_LOG/Driver/Release
3G_LOG/MainFrame
3G_LOG/MainFrame/Debug
3G_LOG/MainFrame/Debug/Debug
3G_LOG/MainFrame/Debug/Release
3G_LOG/MainFrame/Debug/result
3G_LOG/MainFrame/Release
3G_LOG/MainFrame/res
3G_LOG/MainFrame/result
3G_LOG/TestMethods
3G_LOG/TestMethods/Debug
3G_LOG/TestMethods/Debug/Debug
3G_LOG/TestMethods/Release
3G_LOG/usbtest
3G_LOG/usbtest/Debug
3G_LOG/usbtest/Debug/Debug
3G_LOG/usbtest/Debug/Release
3G_LOG/usbtest/header
3G_LOG/usbtest/header/Debug
3G_LOG/usbtest/header/Release
3G_LOG/usbtest/Release

 

 $find  3G_LOG/  -type d | awk -F/ '{if($2 != "" ) print $1"/"$2}'

3G_LOG/dataM
3G_LOG/dataM
3G_LOG/dataM
3G_LOG/Driver
3G_LOG/Driver
3G_LOG/Driver
3G_LOG/MainFrame
3G_LOG/MainFrame
3G_LOG/MainFrame
3G_LOG/MainFrame
3G_LOG/MainFrame
3G_LOG/MainFrame
3G_LOG/MainFrame
3G_LOG/MainFrame
3G_LOG/TestMethods
3G_LOG/TestMethods
3G_LOG/TestMethods
3G_LOG/TestMethods
3G_LOG/usbtest
3G_LOG/usbtest
3G_LOG/usbtest
3G_LOG/usbtest
3G_LOG/usbtest

 

$ find  3G_LOG/  -type d | awk -F/ '{if($2 != "" ) print $1"/"$2}' | uniq
3G_LOG/dataM
3G_LOG/Driver
3G_LOG/MainFrame
3G_LOG/TestMethods
3G_LOG/usbtest

 $ find  3G_LOG/  -type d | awk -F/ '{if($2 != "" ) print $1"/"$2}' | uniq | awk '{print $0"/"$f}'

3G_LOG/dataM/
3G_LOG/Driver/
3G_LOG/MainFrame/
3G_LOG/TestMethods/
3G_LOG/usbtest/

 

$ find  3G_LOG/  -type d | awk -F/ '{if($2 != "" ) print $1"/"$2}' | uniq | awk '{print $0"/"}' | xargs -i cp printlog.* {}

将printlog.* 拷贝到目录

3G_LOG/dataM/
3G_LOG/Driver/
3G_LOG/MainFrame/
3G_LOG/TestMethods/
3G_LOG/usbtest/

 

原创粉丝点击