mv命令可以用来利用文件或者目录,到新的目录下面
可以移动单个文件或者目录,也可以使用通配符来移动多个文件或目录:
例:移动目录下面的所有txt文件:
原来的目录下的文件:
lan@lan_ubuntu:~/桌面/program$ ls
chkhost.sh helloworld.c ifelse.sh test1.sh 课本
comparisonOperator.sh helloworld.o lan test2.sh 实例
for.sh ifelse2.sh parameter.sh test.sh
helloworld ifelse3.sh script4-1.sh users.txt
移动所有的.sh文件到实例目录下
lan@lan_ubuntu:~/桌面/program$ mv *.sh 实例
结果:
lan@lan_ubuntu:~/桌面/program$ ls
helloworld helloworld.c helloworld.o lan users.txt 课本 实例
可以看到所有的.sh文件都被移动走了
移动所有的.c,.txt,.o文件到 实例目录下,这里使用通配符 *:匹配所有的字符,{"string1","string2,"...}:匹配字符串列表中的所有字符串
lan@lan_ubuntu:~/桌面/program$ mv *.{"c","txt","o"} 实例
结果:
lan@lan_ubuntu:~/桌面/program$ ls
helloworld lan 课本 实例
查看实例目录下的文件:
lan@lan_ubuntu:~/桌面/program$ ls ./实例
chkhost.sh helloworld.c ifelse3.sh script4-1.sh test.sh
comparisonOperator.sh helloworld.o ifelse.sh test1.sh users.txt
for.sh ifelse2.sh parameter.sh test2.sh
可以看到所有的文件都移动到实例目录下了。