mmove命令 – 移动文件或目录

249次阅读
没有评论

Linux mmove 命令用于在 MS-DOS 文件系统中,移动文件或目录,或更改名称。

mmove 为 mtools 工具命令,模拟 MS-DOS 的 move 命令,可在 MS-DOS 文件系统中移动现有的文件或目录,或是更改现有文件或目录的名称。

语法格式: mmove [源文件或目录] [目标文件或目录]

常用参数:

源文件或目录 执行操作的源文件或目录路径
目标文件或目录 执行操作后的目标文件或目录路径

参考实例

使用指令 mmove 将文件 a.txt 移动到目录 dir 中:

[root@linuxvip ~]# mmove a.txt dir

使用指令 mmove 将文件 ”autorun.bat” 移动到目录 ”test” 中:

[root@linuxvip ~]# mmove autorun.bat test

以上命令执行以后,指令 mmove 会将文件 ”autorun.bat” 移动到指定目录 ”test” 中。

使用指令 mmove 将文件 test 移动到目录 ”autorun.bat” 中:

[root@linuxvip ~]# mmove test autorun.bat

注意:用户可以使用 mdir 指令查看移动后的文件或目录信息。

使用该命令前先查看原来的目录,得到如下结果:

[root@linuxvip ~]# mdir -/ a:\* 
Volume in drive A has no label # 加载信息  
Volume Serial Number is 13D2~055C  
Directory for A:/ # 以下为目录信息  
#文件名目录大小   修改时间  
./TEST <DIR> 2009-09-23 16:59  
AUTORUN.INF 265 2009-09-23 16:53  
AUTORUN.BAT 43 2009-09-23 16:56  
3 files 308 bytes # 统计总大小  
724 325 bytes free # 剩余空间 

使用 mmove 命令,并再次查看,结果如下:

[root@linuxvip ~]# mmove autorun.bat test
[root@linuxvip ~]# mdir -/ a:\*
Volume in drive A has no label # 加载信息  
Volume Serial Number is 13D2~055C  
Directory for A:/ # 以下为目录信息  
#文件名目录大小   修改时间  
./TEST <DIR> 2009-09-23 16:59  
AUTORUN.INF 265 2009-09-23 16:53  
2 files 265 bytes # 统计总大小  
724 683 bytes free # 剩余空间  
cmd@cmd-desktop:~$ mdir -/ a:\test\* # 再次查看 test 目录中文件  
AUTORUN.BAT 43 2009-09-23 16:56  
1 files 43 bytes # 统计总大小  

正文完