Shell编程常用
Posted surprisezang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell编程常用相关的知识,希望对你有一定的参考价值。
1.读取目录下的文件,逐个给命令运行
dir=$(ls -l ./ |awk ‘!/^d/ {print $NF}‘ |grep -i "sam" ) for i in $dir do ... done
以上是关于Shell编程常用的主要内容,如果未能解决你的问题,请参考以下文章
Posted surprisezang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell编程常用相关的知识,希望对你有一定的参考价值。
1.读取目录下的文件,逐个给命令运行
dir=$(ls -l ./ |awk ‘!/^d/ {print $NF}‘ |grep -i "sam" ) for i in $dir do ... done
以上是关于Shell编程常用的主要内容,如果未能解决你的问题,请参考以下文章