Posted on Netease blog 17:26:00
I have been learning Perl recently. I have been using eclipse to writeProgramBut find the Perl plug-in on eclipse on the Internet. If the plug-in cannot be installed for half a day, use Notepad ++ to write it. It is a short program.
Later, I found a method on the Internet that can be configured in Notepad ++ to call Perl to execute the program being compiled.
Press F5 on the NP ++ interface to bring up the run box, and then enter
CMD/k c: \ Perl \ bin \ perl.exe "$ (full_current_path)" & Echo. & pause & Exit
Save it and then you can use it normally.
$ (Full_current_path) indicates the complete path of the current file.
Exit is to exit the cmd. exe program (command interpreter)
PAUSE Suspends processing of batch files and displays messages.
Echo. (or ECHO \) print the line feed.
Operation Method from --> http://blog.chinaunix.net/u3/118714/showart_2323655.html
I haven't read Perl for a while, and I haven't read that elementary book before. I have to read it now.