Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In shell, I need to extract specific query parameter from URI.

I tried to play around with this to get "offset" value

echo "/mypath/index.php?offset=20&query=uro" | perl -MURI -le 'chomp($url = <>); print URI->new($url)->query_form("offset")'

But it always returns just offset=20&query=uro

Please help

share|improve this question

3 Answers

up vote 4 down vote accepted

query_form returns a hash, change your script to:

perl -MURI -le 'chomp($url = <>); print +{URI->new($url)->query_form}->{offset}'

In order to process multiple lines:

perl -MURI -nle 'print +{URI->new($_)->query_form}->{offset}'
share|improve this answer
What is the way to print 'offset' for each line from output, ex. I have: echo "/mypath/index.php?offset=20&query=uro \n /mypath2/index.php?offset=30&query=uro" – glaz666 Mar 2 '12 at 13:39
1  
@glaz666: just add -n option to perl. See my edit. – M42 Mar 2 '12 at 14:12

You can use the URI::QueryParam module in addition to URI.The query_param method in the URI::QueryParam module gives you query parameter values.

echo "/mypath/index.php?offset=20&query=uro" | perl -MURI -le 'use URI::QueryParam; chomp($url = <>); print URI->new($url)->query_param(offset);'
share|improve this answer

You can use the core CGI module:

perl -MCGI=param -e 'print param("offset")' "index.php?offset=20&query=uro"
share|improve this answer
for a strange reason it doesn't work with piped input... It is important as I am extracting that string there – glaz666 Mar 1 '12 at 13:39
1  
@glaz666 CGI expects a query as an argument to the script. You could use echo "/mypath/index.php?offset=20&query=uro" | perl -MCGI=param -e '@ARGV=<>; print param("offset")' – eugene y Mar 1 '12 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.