728x90 반응형 Command2 [Terminal] 터미널 기본 명령어 #2 "touch, cp, mv, rm, -r" MAC Terminal Basic Command Lines 1. Creating a File (파일 생성하기)$ touch test/text.txtExample$ pwd/Users/user/Desktop/testFolder$ lspractice$ touch text.txt$ lspractice text.txt 2. Copying a File (파일 복사하기)$ cp "filename1" "filename2"Example$ lspractice text.txt$ cp text.txt textCopy.txt$ lspractice text.txt textCopy.txt 3. Moving a File (파일 이동하기)$ mv /path/to/the/file/to/move /path/to/where/it/sho.. 2024. 5. 15. [mac] 터미널 기본 명령어 #1 "pwd, cd, ls, mkdir" MAC Terminal Basic Command Lines 1. Print Working Directory (현재 경로 출력)$ pwd/Users/user 2. Change Directory (디렉토리/폴더 이동)$ cd "path/to/directory/"$ cd ../ # 부모(이전)디렉토리로 이동Example:$ pwd/Users/user$ cd Desktop$ pwd/Users/user/Desktop$ cd ..//Users/user 3. Listing Directory (디렉토리 내용 출력)- 현재 디렉토리 안에 있는 폴더와 파일들 목록을 출력.$ ls # 현재 위치해있는 디렉토리의 내용 출력$ ls "path/to/directory" # 지정하는 디렉토리의 내용 출력Example (1.. 2024. 5. 14. 이전 1 다음 728x90 반응형