#!/bin/bash function main(){      local pre=$1    local name=$2    echo "$pre$name"    test -d "$name" && test -r "$name" && test -x "$name" && test ${name:0:1} != "-" || return 0    cd "$name"     pre=${pre//├/│}    pre=${pre//[─└]/ }    local cnt=` ls -la | wc -l`    find -maxdepth 1 |    while read i ;do        cnt=$((cnt-1));        test "$i" = '.' &&  continue        i=${i:2}        test $cnt -gt 2 && main  "$pre├─" "$i" || main "$pre└─"  "$i"     done     cd ..    return 0} root=`pwd`cd ..main ''  "${root##*/}"

shell 实现Linux 控制台下树形显示目录-LMLPHP解决方法是 ls -l -- -2334,这里的--表示选项结束.ls 就会把-2334理解成字符串而不是选项.
或者文件夹名为若干个空格,也会出错.可是我的Ubuntu上竟然允许这么做,也没有对文件名进行审查.本程序进行了-xx审查.

05-10 22:15