linux 操作题目一个 请详细命令!谢谢

查找/etc目录下以http开头的文件,保存结果到/tmp/fhttp.file;查找/etc下以shell开头且与shell大小写无关的文件名及其匹配的行(不包括错误信息和父目录),并导出到/tmp/ishell.files

第1个回答  2011-10-28
find /etc -name "http*" > /tmp/fhttp.file

find /etc -iname "shell*" > /tmp/lshell.files
第2个回答  2011-10-26
find /etc -name "http*" > /tmp/fhttp.file

find /etc -iname "shell*" > /tmp/lshell.files追问

及其匹配的行(不包括错误信息和父目录),

这个要求呢??

本回答被提问者采纳
第3个回答  2011-11-01
艹铌唛
相似回答
大家正在搜