当前位置: 代码迷 >> AIX >> forfiles怎么转换成ksh脚本
  详细解决方案

forfiles怎么转换成ksh脚本

热度:9270   发布时间:2013-02-26 00:00:00.0
forfiles如何转换成ksh脚本
有bat脚本如下:

set logfile=E:\script\log.txt
E:
cd E:\script
forfiles /M *.gz /C "cmd /c gunzip.exe -v -f @file" >> %logfile%

请问如何转换成具有相同功能的ksh角本?

------解决方案--------------------------------------------------------
可以用find命令吧
find . -name "*.gz" ...

楼主你不如直接说一下你想实现的功能
  相关解决方案