shell脚本遍历目录及其下子目录

二月 21st, 2010 发表在 shell相关 本文作者:深夜的蚊子

晚上没事,用shell写了个递归遍历目录的脚本,本脚本实现递归遍历指定目录,打印目录下的文件名(全路径)。不为别的,就为了以后用着方便。

#!/bin/sh

function scandir(){
    local cur_dir parent_dir workdir
    workdir=$1
    cd ${workdir}
    if [ ${workdir} = "/" ];then
        cur_dir=""
    else
        cur_dir=$(pwd)
    fi
    for dirlist in $(ls ${cur_dir})
    do
        if test -d ${dirlist};then
            cd ${dirlist}
            scandir ${cur_dir}/${dirlist}
            cd ..
        else
            echo ${cur_dir}/${dirlist}
        fi
    done
}

if test -d $1;then
    scandir $1
elif test -f $1;then
    echo "you input a file but not a directory,pls reinput and try again"
    exit 1
else
    echo "the Directory isn't exist which you input,pls input a new one!!"
    exit 1
fi

相关文章:

  1. declare in shell[转]
  2. shell基础系列:awk 用法[转]
  3. Linux SHELL if命令参数说明
  4. 脚本分享-网站程序更新备份脚本
  5. shell数组学习[技术]

Leave a Reply

  • 我的订阅



  • 我的豆瓣

  • 赞助商链接