리눅스의 명령어는 영어단어의 축약형인 경우가 많다. 그러므로 기억이 용이하도록 각각의 명령어의 Letter가 어떤 단어를 Stands for 하는지 알아보도록 하자. pwd(Place Working Directory) cd(Change Directory) mkdir(Making Directory) ls(List) open(Open) touch(Touch) cat(Concatenate) : 전체 내용을 읽음. rm(Remove) mv(Move) cp(Copy) : (cp 원본파일이름 복사하여만들 파일이름) 형식으로 실행. ls - l(list -Lists) /(루트 디렉토리) : 말그대로 가장 아래. Root. ~(홈디렉토리) : 사용자 홈. . : 현재 디렉토리 .. : 상위 디렉토리 1) ls -l 을..