查看系统中test用户的计划任务命令是?
A: crontab -l test
B: crontab -l -u test
C: crontab -l -user test
D: whoami -u test
A: crontab -l test
B: crontab -l -u test
C: crontab -l -user test
D: whoami -u test
B
举一反三
- 查看当前用户的计划任务命令是? A: crontab -e B: crotab -l C: crontab -L D: crontab -l
- 以下那个是为当前用户设置计划任务的命令 A: crontab -l B: crontab -e C: crontab -e abc D: crontab -r
- Linux系统中,添加用户的命令是? A: net user test /add B: user add test C: useradd test D: test useradd
- 编辑当前用户计划任务是哪个命令? A: vim B: crontab -l C: crontab -e D: touch
- 以root身份建一个目录/test,查看这个目录的默认权限是 A: ls -ld /test B: mkdir test C: mkdir /test D: ls -l /test
内容
- 0
下面选项中,哪个MySql命令可以实现切换到test数据库? A: \s test B: \h test C: \? Test D: \u test
- 1
以root身份建一个目录/test,查看这个目录的默认权限是? A: mkdir /test B: ls -l /test C: 0 D: 1
- 2
连接MySQL服务器的指令是?() A: mysqladmin -u root password test B: mysql -u root password test C: mysql -u root -p test D: mysql -u root -password test
- 3
要使数据库TEST作为当前数据库,相应的语句为( ) A: IN TEST B: SHOW TEST C: USER TEST D: USE TEST
- 4
查看一下代码 ,请问输出正确的是|var Test ={| foo:"test",| func:function () {| var self=this;| console.log(this.foo);| console.log(self.foo);| (function () {| console.log(this.foo);| console.log(self.foo);| })();| }|};|Test.func(); A: test test undefined test B: test undefined undefined test C: test test undefined D: test test test test