如何显示linux系统中注册的用户数(包含系统用户)? a. account -l b. nl /etc/passwd |head c. wc --users /etc/passwd d. wc --lines /etc/passwd
在一行结束位置加上什么符号,表示未结束,下一行继续? a. / b. \ c. . d. |
命令 kill 9 的含义是: a. kills the process whose pid is 9. b. kills all processes belonging to uid 9. c. sends sigkill to the process whose pid is 9. d. sends sigterm to the process whose pid is 9.
如何删除一个非空子目录/tmp? a. del /tmp/* b. rm -rf /tmp c. rm -ra /tmp/* d. rm -rf /tmp/*
使用什么命令可以在今天午夜运行命令 cmd1 ? a. at midnight cmd1 b. cron -at "00:00" cmd1 c. batch -t "00:00" d. echo "cmd1" | at midnight