Skip to content
On this page

유용한 Linux 명령어 모음

Title
유용한 Linux 명령어 모음
Category
Linux
Tags
Aliases
유용한 Linux 명령어 모음
Created
last year
Updated
last year

디렉토리에 있는 파일 개수 세기

sh
$ ls [directory-path] | wc -l
$ ls [directory-path] | wc -l
  • wc : 개행의 수를 계산

Released under the MIT License.