POSIX CLI
POSIX CLI1: 파일수정과 삭제
Programmers
2021. 5. 23. 20:32
반응형
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자동완성 기능
반응형