Linux问答环节linux命令#
Posted In客笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux问答环节linux命令#相关的知识,希望对你有一定的参考价值。
之前的题目是:
写出linux命令: 在当前目录及其子目录所有的.cpp文件中查找字符串"example", 不区分大小写?
A.grep -i example ./*.cpp
B.grep -v example ./*.cpp
C.grep -i -v example ./*.cpp
D.grep -i -r example ./*.cpp
解析:
-i ignore 忽略大小写
-r recursion 递归
所以选D没什么好说的,看今天的题目:
linux tcpdump监听网卡 eth0,对方主机IP为10.1.1.180,tcp端口为80的数据,相应命令为?
A.
tcpdump -h eth0 -nn 'tcp and host 10.1.1.180:80'
B.
tcpdump -i eth0 -nn 'tcp and host 10.1.1.180:80'
C.
tcpdump -h eth0 -nn 'tcp and port 80 and host 10.1.1.180'
D.
tcpdump -i eth0 -nn 'tcp and port 80 and host 10.1.1.180'
以上是关于Linux问答环节linux命令#的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段