移动文件
mv
命令用来将文件移动到指定路径,同时也可以对文件重命名。
[root@sylixos:/tmp]# help mv
move a file
mv SRC file name, DST file name
[root@sylixos:/tmp]# ls /apps/
ddd hunterbox t1 cmdParse test
[root@sylixos:/tmp]# ls /tmp
[root@sylixos:/tmp]# mv /apps/test /tmp/test
[root@sylixos:/tmp]# ls /apps/
ddd hunterbox t1 cmdParse
[root@sylixos:/tmp]# ls /tmp/
test
[root@sylixos:/tmp]#