Linux系统中,哪一条命令可以用来查找文件testfile中只包含四个字符的行
A: grep '????' testfiel
B: grep '....' testfile
C: grep '^????$' testfile
D: grep '^....$' testfile
A: grep '????' testfiel
B: grep '....' testfile
C: grep '^????$' testfile
D: grep '^....$' testfile
举一反三
- ( )命令能用来查找在文件TESTFILE中包含4个字符的行。 A: grep '???? ' TESTFILE B: grep '…. ' TESTFILE C: grep '^????$' TESTFILE D: grep '^….$ ' TESTFILE
- 写一个命令用来查找在文件testfile中只包含四个字符的行________。
- ( )命令能用来查找在文件TESTFILE中包含4个字符的行
- 删除文件testfile的命令是:_______ testfile
- cat testfile的输出与下面哪个命令相同?() A: cat>testfile B: cat<testfile C: cat>>testfile D: cat<<testfile