> lc /dir" will count the number of files in /dir
find /dir -type f -maxdepth 1 | wc -l
find /dir -type f -mindepth 2 | wc -l
> lc /dir" will count the number of files in /dir
> and "lc /dir/*" will count the files in subdirectories of /dir.