- 파일보기 ls, ls -l, ls -al 더보기 기본 명령어 - 파일목록 보기 (ls = list) ls[OPTION]...[FILE]... 다양한 옵션을 이용하여 디렉토리 내 파일 목록 조회하기 ls : list ls -l : long list ls -a : all ls -al : all+long ls -a -l : all+long ls *.txt : 확장자가 *.txt파일인것 - 파일내용보기 cat, more, less 더보기 기본 명령어 - 파일 내용보기(cat = concatenate) cat[OPTION]...[FILE] 파일 내용 보여주기 (정확히는 input과 output을 연결(concatenate)하기)(input = 파일, output=standard out) - cat hello...