网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
在linux下echohello>test这条命令中”>”符号的作用是()。
A
比较hello与test文件的内容
B
将hello这个字符输出到屏幕上
C
将hello这个字符输出到test文件中
D
什么都不作
参考答案
参考解析
解析:
暂无解析
更多 “单选题在linux下echohellotest这条命令中””符号的作用是()。A 比较hello与test文件的内容B 将hello这个字符输出到屏幕上C 将hello这个字符输出到test文件中D 什么都不作” 相关考题
考题
若基于Linux操作系统所开发的ARM应用程序源文件名为test.c,那么要生成该程序代码的调试信息,编译时使用的GCC命令正确的是()。A.arm-linux-gcc -c -o test.o test.cB.arm-linux-gcc -S -o test.o test.cC.arm-linux-gcc -o test test.cD.arm-linux-gcc -g -o test test.c
考题
用户通过命令行与Linux系统进行交互,完成各种配置及管理等功能。根据下表要求写出完整的Linux命令。序号命令要求完整命令1测试与www.baidu.com的互通性①2改变当期目录到/home/zhang②3将文件test改名为test.org③4在文件test.c中查找字符串passwd④
考题
在linux系统中,递归地压缩/tmp/test6/目录下的所有文件,正确的命令是()。A、gzip -v /tmp/test6B、gzip /tmp/test6C、gzip -r /tmp/test6D、tar -czvfr /tmp/test6
考题
在linux系统中,建立目录/test/dir目录并设定dir权限为754,以下命令正确的是()。A、mkdir -m 754 /test/dirB、mkdir -p 754 /test/dirC、mkdir -v 754 /test/dirD、mkdir -d 754 /test/dir
考题
在linux系统中,查找/home/目录下文件名以test开头的文件,以下正确的命令是()。A、find /home -name test*B、find -name test* /homeC、find test* /homeD、find -n test* /home
考题
在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系统中,删除/test/test1目录,当/test目录为空时,希望一并删除,以下命令中正确的是()。A、rmdir -r /test/test1B、rmdir -p /test/test1C、rmdir -R /test/test1D、rmdir -l /test/test1
考题
在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系统中,新建目录/test/dir,但是/test/目录还没有建立,下面命令正确的是()。A、touch /test/dirB、mkdir /test/dirC、mkdir -p /test/dirD、mkdir -m /test/dir
考题
在Linux使用GCC编译器时有如下命令:Gcc–gtest.c–otest,其中参数-g的作用是()A、生成目标文件test.oB、生成汇编文件test.sC、进行预编译D、包含调试信息
考题
在linux下echohellotest这条命令中””符号的作用是()。A、比较hello与test文件的内容B、将hello这个字符输出到屏幕上C、将hello这个字符输出到test文件中D、什么都不作
考题
在linux系统中,在当前目录下,将文件/test.gz解压缩成/test,正确的命令是()。A、tar -czf test.gzB、tar -xvzf test.gzC、tar -uczf test.gzD、tar -czf test.gz
考题
在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下echohellotest这条命令中””符号的作用是()。A、将test文件的内容清空B、将hello这个字符添加到test文件开头C、将hello这个字符添加到test文件的末尾D、什么都不作
考题
单选题在linux系统中,查找/home/目录下文件名以test开头的文件,以下正确的命令是()。A
find /home -name test*B
find -name test* /homeC
find test* /homeD
find -n test* /home
考题
单选题在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/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系统中,建立目录/test/dir目录并设定dir权限为754,以下命令正确的是()。A
mkdir -m 754 /test/dirB
mkdir -p 754 /test/dirC
mkdir -v 754 /test/dirD
mkdir -d 754 /test/dir
考题
单选题在linux系统中,新建目录/test/dir,但是/test/目录还没有建立,下面命令正确的是()。A
touch /test/dirB
mkdir /test/dirC
mkdir -p /test/dirD
mkdir -m /test/dir
考题
单选题在linux下echohellotest这条命令中””符号的作用是()。A
比较hello与test文件的内容B
将hello这个字符输出到屏幕上C
将hello这个字符输出到test文件中D
什么都不作
考题
单选题在linux系统中,在当前目录下,将文件/test.gz解压缩成/test,正确的命令是()。A
tar -czf test.gzB
tar -xvzf test.gzC
tar -uczf test.gzD
tar -czf test.gz
考题
单选题在linux下echohellotest这条命令中””符号的作用是()。A
将test文件的内容清空B
将hello这个字符添加到test文件开头C
将hello这个字符添加到test文件的末尾D
什么都不作
考题
多选题在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
热门标签
最新试卷