欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

shell常用

程序员文章站 2022-06-20 08:40:12
...

1、遍历指定路径,并判断是文件夹还是文件($1代表的就是命令行传递的第一个参数)

for dir_or_file in `ls $1`
do  
    if [ -d $dir_or_file ]
    then 
        echo "${dir_or_file} is dir"
    else
        echo "${dir_or_file} is file"
    fi
done

shell常用

2、遍历文件输出内容

for temp in `cat b.txt`
do
    echo $temp
done

shell常用

相关标签: 编程相关 shell