vote up 3 vote down star
1

I have a Perl script that outputs text. I want to import this text into vim, edit it, save it and then exit. On exit, I want the original Perl script to process the edited file.

E.G. how crontab -e works when you add a new job.

Thanks :)

flag

So which part art you having trouble with? What's your question? – Rob Kennedy Apr 24 at 14:12
Well, I don't know how to do it basically. I can pipe the output into vim, but once I'm done with vim, I have to manually run the perl script on the saved file. And then I have to delete the temporary file. I'm looking to seamlessly integrate vim - like crontab, cvs and git do. – aidan Apr 24 at 14:19
You do not want to pipe into vim. unwind has your answer. – skiphoppy Apr 24 at 15:12

5 Answers

vote up 12 vote down check

Sounds like a very plain case to use system to run vim on the filename. That will wait until vim is done, at which point you can go ahead and read the file's new contents.

link|flag
Cool! thanks - I hadn't thought of that. That's exactly what I need. – aidan Apr 24 at 16:05
2  
You may want to use the $EDITOR environment variable to allow your users to select their editor of choice. – rampion Apr 24 at 17:05
vote up 4 vote down
use File::Temp;
my $fh = new File::Temp();
my $fname = $fh->filename;
print $fh "My Text";
$fh->close();
system('vim', $fname);
open $fh, '<', $fname or die "Can't open temp file: $!";
while(<$fh>) { print }
close $fh;
link|flag
Might want to unlink($fname) after you're done, too. – ephemient Apr 24 at 20:17
It is unnecessary because File::Temp will do it for you. See File::Temp for details. – Hynek -Pichi- Vychodil Apr 25 at 4:31
vote up 3 vote down

A suggestion: Why don't you grab the source to crontab and see what it does?

Other than that, unwind has your answer.

And I think the way to think about this is:

"Okay, I need a program to write out a file, call vim, then do further processing on the file. So, here's my routine to write the file, here's my routine that calls vim (using system), and here's my routine to do the postprocessing after vim is done. Now I'll lace them all together in my main program, and I'm done!"

link|flag
vote up 0 vote down

Pipe the output to vim - and don't forget the dash at the end.

script.pl | vim -

This will open vim with the contents of the scripts output. Just save it :w filename and exit :q. This isn't how crontab -e works, but it comes close enough in an easy way.

Edit:
I missed this part (or maybe the question was edited afterward):

On exit, I want the original Perl script to process the edited file.

This isn't the best way to do this, but going with my original answer, this works (if you save the file as file.txt):

perl -le 'print "1234"' | vim - && perl -pe '' file.txt

Just replace the perl commands with your perl commands and it should work. Like I said, this is not the best answer, but it should work.

link|flag
vote up 2 vote down

You seem to want to pipe the output of your script into vim:

script | vim

And then you want the script to somehow know that Vim is finished and resume. That's not how I/O redirection works. The script has no knowledge of what program its output is being piped into.

You mentioned other programs like crontab and cvs; one thing those have in common is that they invoke the editor themselves. They create temporary files, read the EDITOR or VISUAL environment variables (check the manual for details about how they choose which one), run the given program, and wait for the program to finish. Then they continue running and use the file they specified earlier.

Turns out I've done exactly that in Perl. I created a temporary file (with tempfile), wrote a bunch of text into it, and then used system to invoke the editor on the file. You don't even have to close the file while you run the editor.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.