The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Double quotes or single quotes when using ssh? password636 Shell Programming and Scripting 3 05-29-2008 08:52 PM
Escaping the * character in ksh. arvindcgi Shell Programming and Scripting 6 05-19-2008 09:50 AM
escaping double-quotes inside the script? GKnight Shell Programming and Scripting 3 05-05-2008 05:35 PM
Escaping '*' in Bash rkshukla14 Shell Programming and Scripting 7 04-04-2007 11:45 PM
Incorrect Directory Name jand102821 UNIX for Dummies Questions & Answers 1 06-19-2002 04:35 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 08-31-2007
new2ss new2ss is offline
Registered User
  
 

Join Date: Jan 2006
Posts: 133
incorrect quotes/escaping?

Hi all, i have a perl script. from within the perl script, i am calling a system command which i need to pass in a perl variable. but the variable substitution does not seems to happen. would like to find out where is the missing escape character or extra quotes;or what is my mistake.

Code:
#!/usr/bin/perl -w

$community="public";
$result=system("snmpwalk -v 2c -c $community localhost system");
  #2 (permalink)  
Old 08-31-2007
Yogesh Sawant's Avatar
Yogesh Sawant Yogesh Sawant is offline Forum Staff  
Part Time Moderator and Full Time Dad
  
 

Join Date: Sep 2006
Location: Rossem, Tazenda
Posts: 1,086
$result would contain the exit status that is returned by snmpwalk command.
from the man pages:

Code:
The return value is the exit status of the program as returned by the wait call.
To get the actual exit value, shift right by eight (see below). See also exec.
This is not what you want to use to capture the output from a command, for that you should use merely backticks or qx//, as described in "`STRING`" in perlop.
Return value of -1 indicates a failure to start the program or an error of the wait(2) system call (inspect $! for the reason).
If you are trying to capture the output of snmpwalk command, then use backticks instead:
Code:
$snmpwalk_out = `snmpwalk -v 2c -c $community localhost system`;
  #3 (permalink)  
Old 09-02-2007
new2ss new2ss is offline
Registered User
  
 

Join Date: Jan 2006
Posts: 133
Hi Yogesh Sawant,

the backtick worked. thank you.
Sponsored Links
Closed Thread

Bookmarks

Tags
perl, snmpwalk

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 10:43 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0