下列哪个文件名通配符可以匹配一个任意字符?
A. !
B. *
C. ?
D. []
使用find命令查找 /etc/yum.repos.d目录下所有扩展名为repo 的文件正确写法是:
A. find/etc/yum.repos.d/-name*.repo
B. find -name *.repo /etc/yum.repos.d/
[root@localhost~]#wc /etc/passwd100 300 405其中300代表的含义是( )
A. /etc/passwd文件中行数
B. /etc/passwd文件中字节数
C. /etc/passwd文件中单词数
D. /etc/passwd文件中用户数量
假设不知道目录名class的位置,如何准确的找到这个目录()
A. find / -name class
B. whereis class
C. ls * class
D. find / -type d -name class