[root@localhost ~]# touch test1.txt test2.txt test3.txt #建立三个测试文件使用mv命令移动文件,加入()选项,可以看到有哪些文件进行了移动[root@localhost ~]# mv () *.txt /tmp "test1.txt" -> "/tmp/test1.txt" "test2.txt" -> "/tmp/test2.txt" "test3.txt" -> "/tmp/test3.txt"
举一反三
- 以下操作能实现追加写入文件的是 A: echo "hello" > /tmp/test B: echo "hello" >> /tmp/test C: print "hello " >> /tmp/test D: printf "hello " >> /tmp/test
- 判断一个文件/mnt/cdrom存在且为目录的命令是( )。 A: test -d /tmp/cdrom B: test -f /tmp/cdrom C: test -r /tmp/cdrom D: test -w /tmp/cdrom
- 如何删除一个非空子目录/tmp/test A: del /tmp/test B: rmdir /tmp/test C: rm -rf /tmp/test D: mkdir /tmp/test
- 在linux系统中,删除/tmp/test目录及其子目录,并且不用确认,以下正确的命令是()。 A: rm-rf/tmp/test B: rmdir/tmp/test C: rm-r/tmp/test D: rm-r-f/tmp/test E: rm-f/tmp/test
- 以下操作能实现追加写入文件的是 A: echo "hello" > /tmp/test B: echo "hello" >> /tmp/test C: print "hello\n" >> /tmp/test D: printf "hello\n" >> /tmp/test