마루의 일상 2021. 6. 22. 10:42
728x90
반응형

파일이동 및 파일명 변경 명령어

 

[root@localhost test]# ls
test1  testfile  testfile2
[root@localhost test]# mv testfile changefile
[root@localhost test]# ls
changefile  test1  testfile2
[root@localhost test]#
[root@localhost test]# ls
changefile  test1  testfile2
[root@localhost test]# mv changefile test1/changefile
[root@localhost test]# ls test1
changefile  test2
[root@localhost test]# 
728x90
반응형