美文网首页
shell-判断是否是文件

shell-判断是否是文件

作者: keaidelele | 来源:发表于2017-08-14 22:47 被阅读69次

    !/bin/bash

    function getdir(){
    for element in ls $1
    do
    dir_or_file=$1"/"$element
    if [ -d $dir_or_file ]
    then
    getdir $dir_or_file
    else
    echo $dir_or_file
    fi
    done
    }
    root_dir="fungi"
    getdir $root_dir
    ~

    相关文章

      网友评论

          本文标题:shell-判断是否是文件

          本文链接:https://www.haomeiwen.com/subject/kivprxtx.html