Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

my $blah = 'foo.Q'; print qq{gcc $blah -o @{[ substr $blah, 0, -2 ]} and many more }; __END__ gcc foo.Q -o foo and many more

See Re^2: How can we interpolate an expression??

See perlintro, perlrequick for the regex portion, and for the template, see (tye)Re: Stupid question (and one discussion of that template Re^2: RFC: Creating unicursal stars)

#!/usr/bin/perl -- #~ 2012-10-11-01:58:20PDT by Anonymous Monk #~ perltidy -csc -otr -opr -ce -nibc -i=4 use strict; use warnings; use Data::Dump qw/ dd /; Main( @ARGV ); exit( 0 ); sub getFiles { my @files; foreach (@_) { if( /\.[cC]$/ ){ if( -e $_ ){ push @files, $_; } else { printf "Unreadable file: %s : (%d) %s\n", $_, $!, $!; } } else { print "Invalid file: $_\n"; } } return \@files; } sub compile { my $files = shift; for( @$files ){ ## all of these do the same thing, see perlintro / perlrequick for exp +lanation #~ my( @cmd ) = ( 'gcc', $_, '-o', /^(.+?)\.[^\.]+$/ ); #~ my( @cmd ) = ( 'gcc', $_, '-o', $_ =~ /^(.+?)\.[^\.]+$/ ); my( @cmd ) = ( 'gcc', $_, '-o' ); #~ push @cmd, $1 if /^(.+?)\.[^\.]+$/ ; push @cmd, $1 if $_ =~ /^(.+?)\.[^\.]+$/ ; dd \@cmd; system @cmd; } } sub Main { return print Usage() if not @_; my $files = getFiles( @_ ); dd $files; compile( $files ); } ## end sub Main sub Usage { <<"__USAGE__"; $0 $0 list of files to process __USAGE__ } ## end sub Usage __END__

If you're going to be using qx, you might want to quote/escape vars (like filenames) with String::ShellQuote


In reply to Re: Simple Regex Question / Code Review by Anonymous Monk
in thread Simple Regex Question / Code Review by marquezc329

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-24 07:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found