liunx sed&awk 删除指定字符间的内容?

2025-05-15 07:35:05
推荐回答(1个)
回答1:

sed -r 's/.*GET (.*) HTTP.*/\1/'

或者

awk '{print $7}'