grep /bin/grep
grep -iv [指定字条串] [文件]
在文件中搜索字符串匹配的行并输出
-i 不区分大小写 -v 排除指定字符串
grep -i java /etc/profile
grep -v ^# /etc/profile
不显示以#开头的行
grep /bin/grepgrep -iv [指定字条串] [文件]在文件中搜索字符串匹配的行并输出-i 不区分大小写-v 排除指定字符串grep -i java /etc/profilegrep -v ^# /etc/profile不显示以#开头的行转载于:https://www.cnblogs.com/Mike_Chang/p/9499505.html...
grep /bin/grep
grep -iv [指定字条串] [文件]
在文件中搜索字符串匹配的行并输出
-i 不区分大小写 -v 排除指定字符串
grep -i java /etc/profile
grep -v ^# /etc/profile
不显示以#开头的行
转载于:https://www.cnblogs.com/Mike_Chang/p/9499505.html
更多推荐
所有评论(0)