在linux系统中,要建立cron任务,要求每年2月1日、8月1日的中午11点运行/tmp/test.sh文件,应在crontab文件中输入()。A、0 11 1 2 8 /tmp/test.shB、0 11 1 2 8 * /tmp/test.shC、0 11 1 2,8 /tmp/test.shD、0 11 1 2,8 * /tmp/test.sh

在linux系统中,要建立cron任务,要求每年2月1日、8月1日的中午11点运行/tmp/test.sh文件,应在crontab文件中输入()。

  • A、0 11 1 2 8 /tmp/test.sh
  • B、0 11 1 2 8 * /tmp/test.sh
  • C、0 11 1 2,8 /tmp/test.sh
  • D、0 11 1 2,8 * /tmp/test.sh

相关考题:

设在窗体上有一个名称为Command1的命令按钮,并有以下事件过程: Private Sub Command1_Click() Static b As Variant b=Array(1,3,5,7,9) End Sub 此过程的功能是把数组b中的5个数逆序存放(即排列为9,7,5,3,1)。为实现此功能,省略号处的程序段应该是( )。A.For i=0 To 5-1\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextB.For i=0 To 5 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextC.For i=0 To 5\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextD.For i=1 To 5\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp Next

设在窗体上有一个名称为Command1的命令按钮,并有以下事件过程: Private Sub Command1_Click( ) Static b As Variant b=Array(1,3,5,7,9) …… End Sub 此过程的功能是把数组b中的5个数逆序存放(即排列为9,7,5,3,1)。为实现此功能,省略号处的程序段应该是A.Fori=0 T0 5-1\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextB.Fori=0 To 5 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextC.Fori=0 T0 5\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextD.For i=l To 5\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp Next

设在窗体上有一个名称为Command1的命令按钮,并有以下事件过程: Private Sub Commandl Click() StatiC b As Variant b=Array(1,3,5,7,9) ... End Sub 此过程的功能是把数组b中的5个数逆序存放(即排列为9,7,5,3,1)。为实现此功能,省略号处的程序段应该是A.For i=0 To 5-1\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextB.For i=0 To 5 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextC.For i-0 To 5\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextD.For i=1 To 5\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp Next

Files /tmp/file2 and /tmp/file3 are hard linked to /tmp/file1.What will the result be if a user makes changes to /tmp/file2 at the same time another user tries to delete /tmp/file1?() A.All three files will contain the updates and will remain available.B.All three files will be deleted and no changes will be made to /tmp/file2.C.Only /tmp/file2 will contain the updates, but /tmp/file3 will remain available.D.Both /tmp/file2 and /tmp/file3 will contain the updates and will remain available.

设在窗体上有一个名称为Command1的命令按钮,并有以下事件过程: Private Sub Command1_Click() Static b As Variant b=Array(1, 3, 5, 7, 9) … End Sub 此过程的功能是把数组b中的5个数逆序存放(即排列为9, 7, 5, 3, 1)。为实现此功能,省略号处的程序段应该是:______。A.For i=0 To 5-1\2 tmp=b(i) b(i)=b(5-i-1) b(5-1-1)=tmp NextB.For i=0 To 5 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextC.For i=0 To 5\2 tmp=b(i) b(i)=b(5-i-1) b(5-i-1)=tmp NextD.Fori=1 To 5\2 tmp=b(1) b(i)=b(5-i-1) b(5-i-1)=tmp Next

在linux系统中,递归地压缩/tmp/test6/目录下的所有文件,正确的命令是()。A、gzip -v /tmp/test6B、gzip /tmp/test6C、gzip -r /tmp/test6D、tar -czvfr /tmp/test6

linux系统中,在/tmp存在一文件file,想更新文件的时间目录为当前的时间的命令是()。A、mkdir /tmp/fileB、touch /tmp/fileC、mv /tmp/fileD、rm /tmp/file

在linux系统中,在/tmp下创建一个空文件file的命令是()。A、mkdir /tmp/fileB、make /tmp/fileC、touch /tmp/fileD、mv /tmp/file

在linux系统中,当前路径为/tmp/test,将/tmp/test/oldfile更改为/tmp/test/newfile,以下命令错误的是()。A、mv /tmp/test/oldfile newfileB、mv /tmp/test/oldfile /tmp/test/newfileC、mv oldfile /tmp/test/D、mv oldfile newfile

在linux系统中,当前路径为/tmp/test,将/tmp/test/oldfile更改为/tmp/test/newfile,以下命令正确的是()。A、mv /tmp/test/oldfile newfileB、mv /tmp/test/oldfile /tmp/test/newfileC、mv oldfile newfileD、mv oldfile /tmp/test/newfileE、mv oldfile /tmp/test/

在linux系统中,用cp命令将/tmp/test中的文件到/tmp/test1中,不想拷贝目录本身,以下命令正确的是()。A、cp -R /tmp/test /tmp/test1B、cp -r /tmp/test /tmp/test1C、cp -R /tmp/test/. /tmp/test1D、cp /tmp/test /tmp/test1

在linux系统中,将文件/tmp/test1和/tmp/test2压缩到/tmp/test.gz,正确的命令是()。A、tar -czvf test1 test2 test.gzB、tar -czvf test.gz test1 test2C、tar test.gz test1 test2D、tar test1 test2 test.gz

在linux系统中,要为用户jenny建立cron任务,要求五月到九月这五个月每周日晚11:59运行/tmp/test.sh文件,应在crontab文件中输入()。A、59 11 * 5,6,7,8,9 0 /tmp/test.shB、59 11 * 5-9 0 /tmp/test.shC、59 11 * 5,6,7,8,9 7 /tmp/test.shD、59 11 * 5-9 7 /tmp/test.shE、59 11 * */5 /tmp/test.sh

在linux系统中,要增加一个在8月10日上午10:00运行的任务/tmp/task.sh,应执行的命令是()。A、at /tmp/task.sh 10:00 08/10/05B、at –f /tmp/task.sh 10:00 08/10/05C、at –f /tmp/task.sh 10:00pm 08/10/05D、at /tmp/task.sh 10:00am 08/10/05

linux系统,把当前日期标准输出和标准出错信息重定向到/tmp/date文件中,下面正确的操作是()。A、date/tmp/dateB、date/tmp/dateC、date2/tmp/dateD、date/tmp/date

在linux系统中,用cp命令将/tmp/test/file文件,复制到/tmp下,并保持原来的名字,以下命令中正确的是()。A、cp -l /tmp/test/file /tmpB、cp -s /tmp/test/file /tmpC、cp -r /tmp/test/file /tmpD、cp /tmp/test/file /tmpE、cp /tmp/test/file /tmp/file

在linux系统中,指定在今天下午 5:30 执行/tmp/test.sh文件,假设现在时间是 2008年9月30日中午12:30,下面()命令是错误的。A、at -f /tmp/test.sh 17:30 09/30/2008B、at -f /tmp/test.sh 5:30pm 09/30/2008C、at -f /tmp/test.sh now +5 minutesD、at -f /tmp/test.sh +5 minutes

Files /tmp/file2 and /tmp/file3 are hard linked to /tmp/file1. What will the result be if a user makes changes to /tmp/file2 at the same time another user tries to delete /tmp/file1?()A、All three files will contain the updates and will remain available.B、All three files will be deleted and no changes will be made to /tmp/file2.C、Only /tmp/file2 will contain the updates, but /tmp/file3 will remain available.D、Both /tmp/file2 and /tmp/file3 will contain the updates and will remain available.

单选题在linux系统中,将文件/tmp/test1和/tmp/test2压缩到/tmp/test.gz,正确的命令是()。Atar -czvf test1 test2 test.gzBtar -czvf test.gz test1 test2Ctar test.gz test1 test2Dtar test1 test2 test.gz

单选题在linux系统中,用cp命令将/tmp/test中的文件到/tmp/test1中,不想拷贝目录本身,以下命令正确的是()。Acp -R /tmp/test /tmp/test1Bcp -r /tmp/test /tmp/test1Ccp -R /tmp/test/. /tmp/test1Dcp /tmp/test /tmp/test1

多选题在linux系统中,要为用户jenny建立cron任务,要求五月到九月这五个月每周日晚11:59运行/tmp/test.sh文件,应在crontab文件中输入()。A59 11 * 5,6,7,8,9 0 /tmp/test.shB59 11 * 5-9 0 /tmp/test.shC59 11 * 5,6,7,8,9 7 /tmp/test.shD59 11 * 5-9 7 /tmp/test.shE59 11 * */5 /tmp/test.sh

单选题在linux系统中,要建立cron任务,要求每年2月1日、8月1日的中午11点运行/tmp/test.sh文件,应在crontab文件中输入()。A0 11 1 2 8 /tmp/test.shB0 11 1 2 8 * /tmp/test.shC0 11 1 2,8 /tmp/test.shD0 11 1 2,8 * /tmp/test.sh

单选题在linux系统中,指定在今天下午 5:30 执行/tmp/test.sh文件,假设现在时间是 2008年9月30日中午12:30,下面()命令是错误的。Aat -f /tmp/test.sh 17:30 09/30/2008Bat -f /tmp/test.sh 5:30pm 09/30/2008Cat -f /tmp/test.sh now +5 minutesDat -f /tmp/test.sh +5 minutes

单选题在linux系统中,在/tmp下创建一个空文件file的命令是()。Amkdir /tmp/fileBmake /tmp/fileCtouch /tmp/fileDmv /tmp/file

单选题在linux系统中,递归地压缩/tmp/test6/目录下的所有文件,正确的命令是()。Agzip -v /tmp/test6Bgzip /tmp/test6Cgzip -r /tmp/test6Dtar -czvfr /tmp/test6

单选题linux系统,把当前日期重定向到/tmp/date文件中,并不想覆盖原来的内容,下面正确的操作是()。Adate/tmp/dateBdate/tmp/dateCdate 2/tmp/dateDdate /tmp/date

多选题在linux系统中,用cp命令将/tmp/test/file文件,复制到/tmp下,并保持原来的名字,以下命令中正确的是()。Acp -l /tmp/test/file /tmpBcp -s /tmp/test/file /tmpCcp -r /tmp/test/file /tmpDcp /tmp/test/file /tmpEcp /tmp/test/file /tmp/file