Last updated 1 year ago
Was this helpful?
#linux #tip
find DIR_NAME -type f | wc -l
자식 디렉토리의 파일 갯수도 포함
type -f : 파일만
type -f
wc : count lines, words, or bytes on input
wc
wc -l : count just newlines
wc -l