1. find 명령어 사용 (리눅스/유닉스)폴더 내 모든 파일 개수find /path/to/directory -type f | wc -l/path/to/directory: 확인하려는 폴더 경로.-type f: 파일만 검색.wc -l: 파일 개수 세기.특정 확장자의 파일 개수find /path/to/directory -type f -name "*.txt" | wc -l-name "*.txt": 특정 확장자(.txt)의 파일만 검색.2. ls 명령어 사용현재 디렉토리 내 파일 개수ls -1 /path/to/directory | wc -l-1: 파일 이름을 한 줄씩 출력하여 정확한 개수를 계산.하위 폴더 포함 파일 개수ls -lR /path/to/directory | grep '^-' | wc -l-lR: 하..