标签:调用 .com height http 别人 使用 特殊 alt 处理
linux中管道符“|”的作用
命令格式:命令A|命令B,即命令1的正确输出作为命令B的操作对象(下图应用别人的图片)
1. 例如: ps aux | grep "test" 在 ps aux中的結果中查找test。
2. 例如: find . -name "*.txt" | xargs grep "good" -n --color=auto 把find的结果当成参数传入到grep中,即在那些文件内部查找good关键字。
注:本例中xargs将find产生的长串文件列表拆散成多个子串,
如“”find /path -type f -print0 | xargs -0 rm
标签:调用 .com height http 别人 使用 特殊 alt 处理
原文地址:http://www.cnblogs.com/huamei2008/p/7895138.html