![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| 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 |
| Scalar i500 can see tape drives but not autochanger | tecky | UNIX for Advanced & Expert Users | 1 | 04-04-2008 12:16 PM |
| scalar variable assignment in perl + { operator | JamesGoh | Shell Programming and Scripting | 3 | 01-20-2008 05:09 PM |
| Can't modify not in scalar assignment compilation error | new2ss | Shell Programming and Scripting | 2 | 05-18-2006 05:03 AM |
| Query string assingment for other variable in PERL | maheshsri | Shell Programming and Scripting | 0 | 01-30-2006 04:45 AM |
| how to cut a string from a variable | kjaisan | UNIX for Dummies Questions & Answers | 2 | 10-30-2003 01:13 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
perl scalar variable in backquoted string
hi
I've been searching all over the internet to simply do the following: Code:
$tempfile = "/usr/school/tempfile.dat";
$myvar = param('add'); ###add is the variable assigned to a popup menu
`ls -l $myvar * >> $tempfile` ###I also tried `ls -l ${myvar}* >>$tempfile`
open(ADDLIST, "<tempfile");
@addvar = (" ", <ADDLIST>, $myvar);
unlink("$tempfile");
return @addvar
the output lists all the contents of ls -l and the string ab. But what I want is to see the list of ls -l ab* and the string ab. Can someone please help me, thanks! Last edited by mehdi9; 10-04-2007 at 04:12 PM.. |
| Bookmarks |
| Tags |
| regex, regular expressions |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|