Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: making my script work with vi

by gmax (Abbot)
on Jul 15, 2004 at 18:18 UTC ( [id://374768]=note: print w/replies, xml ) Need Help??


in reply to making my script work with vi

As you can learn from your example with sort, the external command takes your lines from the standard input.

Change your script this way:

#!/usr/bin/perl -w use strict; while (<>) { chomp; print "file is [$_]\n"; if ( ! -e $_ ) { print "#$_\n"; } else { print "$_\n"; } }

However, if your Vim has direct Perl support, you can execute something like this:

:1,$ perldo s/^/#/ unless -e $_

See Editing features for advanced users for an explanation and more examples on similar features.

 _  _ _  _  
(_|| | |(_|><
 _|   

Log In?
Username:
Password:

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

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

    No recent polls found