Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^4: How to replace spaces with different chars?

by LanX (Saint)
on Jul 07, 2022 at 16:49 UTC ( [id://11145338]=note: print w/replies, xml ) Need Help??


in reply to Re^3: How to replace spaces with different chars?
in thread How to replace spaces with different chars?

Hi Ken

Sorry, I have to disagree.

For numerous reasons it's best practice not to shell out for something which can be done inside Perl. (portability, performance, maintenance, security, ...)

It's even a bit worse, because ls is useless, if you just need the shell's globbing.

TMTOWTDI only covers this, if there is a good reason.

Anyway, let me point you to older discussions instead of reiterating the reasons °

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

°) thanks to eyepops++ for keeping this listed in his homenode! :)

Replies are listed 'Best First'.
Re^5: How to replace spaces with different chars?
by kcott (Archbishop) on Jul 08, 2022 at 17:42 UTC
    "Sorry, I have to disagree."

    Do you? What precisely are you disagreeing with? Please provide a full, verbatim quote of anything I wrote that you disagree with.

    The facts:

    • The OP asked how system could be used.
    • I provided an example in answer to this.
    • I followed this up with a further example contrasting system(...) (no capture of command output), with `...` (capture of command output possible), in accordance with the system documentation.

    You seem to have concocted the idea that I recommended shelling out and, on the basis of that fictitious notion, decided that the appropriate action was to educate me.

    My reference to TMTOWTDI, including a smiley, was simply a nod to the fact that other (better) ways were possible. I've no idea where your modified definition originated; I suggest you follow the link and read:

    "This doesn’t mean that more ways are always better or that all possible paths are equally desirable ..."

    There's certainly no reference to your:

    "TMTOWTDI only covers this, if there is a good reason."

    — Ken

      Ken, I'm not sure where this misunderstanding comes from.

      First of all I already said that replacing whitespace with a character-class for globbing is the best of all solutions.

      Regarding TMTOWTDI from perlglossary

      > TMTOWTDI There’s More Than One Way To Do It, the Perl Motto. The notion that there can be more than one valid path to solving a programming problem in context. (This doesn’t mean that more ways are always better or that all possible paths are equally desirable—just that there need not be One True Way.)

      My "disagreement" is, that using the build-in glob is "the one true way".

      There are exceptions, where running an external command can be desirable. For instance is the regex engine of unix-grep often far more performant, IIRC.

      And I'm not educating you, I'm providing information for all potential future readers.

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11145338]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-19 05:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found