亲宝软件园·资讯

展开

shell文件和目录遍历

hustyangju 人气:0

一个for循环实现一个目录下的文件和目录遍历,很实用

[root@localhost shell_order]# cat test27.sh 
#!/bin/bash
#print the directory and file
 
for file in /home/hustyangju/*
do
if [ -d "$file" ]
then 
  echo "$file is directory"
elif [ -f "$file" ]
then
  echo "$file is file"
fi
done
[root@localhost shell_order]# ./test27.sh 
/home/hustyangju/array is directory
/home/hustyangju/menuwindow-7.12 is directory
/home/hustyangju/menuwindow-build-desktop is directory
/home/hustyangju/shell_order is directory
[root@localhost shell_order]# 

递归遍历

#! /bin/bash
read_dir(){
    for file in `ls $1`       #注意此处这是两个反引号,表示运行系统命令
    do
        if [ -d $1"/"$file ]  #注意此处之间一定要加上空格,否则会报错
        then
            read_dir $1"/"$file
        else
            echo $1"/"$file   #在此处处理文件即可
        fi
    done
}
#读取第一个参数
read_dir $1

补充:Shell遍历目标目录和子目录下的所有文件

1.编写代码

#!/bin/bash
 
function getdir(){
    for element in `ls $fd`
    do  
        dir_or_file=$fd"/"$element
        if [ -d $dir_or_file ]
        then 
            getdir $dir_or_file
        else
            echo $dir_or_file
        fi  
    done
}
root_dir="/opt/datas"
getdir $root_dir

2.参数

3.测试

测试结果:打印出来了目标目录以及子目录下的所有文件

 

加载全部内容

相关教程
猜你喜欢
用户评论