리눅스 mv

John Jeong (토론 | 기여)님의 2018년 11월 19일 (월) 18:16 판 (→‎파일이동)

1 개요

move; mv
/bin/mv
무브
  • 파일/디렉토리 이동 및 이름 변경 리눅스 명령어

2 파일명 변경

[root@zetawiki ~]# echo hello > hello.txt
[root@zetawiki ~]# mv hello.txt new
[root@zetawiki ~]# ll new
-rw-r--r--. 1 root root 6 Mar 21 19:11 new
[root@zetawiki ~]# cat new
hello
[root@zetawiki ~]# rm -f new
[root@zetawiki ~]# mkdir new
[root@zetawiki ~]# echo hello > hello.txt
[root@zetawiki ~]# mv hello.txt new
[root@zetawiki ~]# ll new
total 4
-rw-r--r--. 1 root root 6 Mar 21 19:13 hello.txt

3 파일이동

mv file1 file2 target_dir

4 같이 보기

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}