No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
You can try by setting the user-agent. use WWW::Mechanize; my $mech=WWW::Mechanize->new(); $mech->agent_alias( 'Windows IE 6' ); For more list of user agents try - `perldoc WWW::Mechanize` Also see [this](http://code.google.com/p/www-mechanize/issues/list) page for known issues.
> Can you please suggest me to how to execute .profile from perl script. I have following unix script steps & just wanted replicate them in perl script to make sure I'm executing .profile. You could use system command. Try, system(" source /YOUR_HOME_DIR_PATH/.profile ");
If you want to capture the output of the command/another program, use $output=`COMMAND_TO_BE_EXECUTED`;
The End.
chandrashekar