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":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.