POSIX CLI1: 파일수정과 삭제
1. 파일 수정 nano hello.txt: 파일내용 수정 mv hello.txt hello_world.txt: 파일 이름을 hello.txt에서 hello_world.txt로 수정 mv hello_world.txt../hello_world.txt: hello_world.txt 파일을../hello_world.txt(부모 디렉터리)로 이동 2. 파일 삭제 rm hello_world.txt: hello_world.txt 파일 삭제 *tip: rm h+tap ☞ hello_world.txt자동완성 기능 출처: https://opentutorials.org/module/3747/22524
POSIX CLI
2021. 5. 23. 20:32
POSIX CLI1: 디렉토리의 생로병사
1. 디렉터리를 생성, 수정, 삭제하는 방법 mkdir: make directory 디렉터리 생성 ./: current directory 현재 디렉터리 디렉터리 /: 최상위 디렉터리 mv: move(rename) 디렉터리 이동 또는 이름 변경 예) mv dummy dummy2 ☞ dummy디렉터리명을 dummy2로 변경 rm -r: remove directory 디렉터리 삭제(-r) rm을 통해서는 directory를 삭제할 수 없다. 옵션인 -r을 통해서 삭제가 가능하다. 출처: https://opentutorials.org/module/3747/22521
POSIX CLI
2021. 5. 23. 17:26
공지사항