我已经将一个站点从http移动到https并且(正如预期的那样)我收到了一些错误 - 我想要做的是grep for any引用http而不是https,这可能吗?
谢谢
答案 0 :(得分:2)
我可以按照我尝试的顺序思考三种方式:
1)
$ grep -i 'http[^s]' *
2)我假设日志类似于http://some.site.com或https://some.site.com。所以grep'http:'
$ grep -i 'http:' *
3)grep for http并从结果中删除https:
$ grep -i http * | grep -v https