shell脚本仅列出当前目录下的文件及文件夹

#!/bin/bash
function ergodic(){
for file in ` ls $ `
# do
# if [ -d $"/"$file ]
# then
# ergodic $"/"$file
# else
# wc -L $"/"$file | cut -d' ' -f1 >> /home/huanghongbo/out
# fi
# done
do
echo $file
done }
INIT_PATH="/home/huanghongbo/"
ergodic $INIT_PATH

参考:

Linux shell编程 5 ---- 利用shell脚本遍历某个目录下的所有文件

上一篇:关键字static(1)


下一篇:DEBUG模式下, 内存中的变量地址分析