Posted in 面试题 onMarch 05, 2014
用Shell Script写一段代码 把一个目录下所有以ks开头的文件夹取出,保存到dirlist.txt文件中,然后遍历文件中的文件夹路径,在每个文件夹目录中执行一句任何命令。
#!/bin/bash
find /apps/build/jobs/workspace/dev_1.0.0/ -maxdepth 2 -name “ks*” -type d > dirlist.txt
for DIR in $( do
cd $DIR
mvn sonar:sonar
done
#!/bin/bash
find /apps/build/jobs/workspace/dev_1.0.0/ -maxdepth 2 -name “ks*” -type d > dirlist.txt
for DIR in $( do
cd $DIR
mvn sonar:sonar
done
ShellScript面试题一则-ShellScript编程
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@