shell 统计当前目录下的文件个数

#!/bin/bash

#files 代表文件 *代表当前目录 expr是linux下的计算程序 ‘pwd’显示当前目录

counter=0
for files in *
do
    counter=`expr $counter + 1`
done
echo "There are $counter files in `pwd` we need to process"

你可能感兴趣的:(linux,shell)