I have a record like
192.168.28.168 user82 [08/May/2010:09:52:52] "GET /NoAuth/js/titlebox-state.js HTTP/1.1" "http://www.example.com/index.html" "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB7.0"
I want the final out put be like display only
/NoAuth/js/titlebox-state.js HTTP/1.1
I use this command and can get the following
cut -f4 example.log
"GET /NoAuth/js/titlebox-state.js HTTP/1.1"
but, I need to remove ["GET] as well, how can I do that with cut or awk or sed?