in reply to Re^2: unix to perl questions
in thread unix to perl questions

system("echo",...) is roughly equivalent to print.
I guess the reason why our anonymous brother didn't use the latter is that you have the "real" commands for debugging, and to change from "dry run" to "wet run" (or how this may be called) afterwards you do (in vi command mode)
:%s/system("echo",/system(/
BTW for vi on Windows, see http://www.vim.org/ugrankar.pdf

Replies are listed 'Best First'.
Re^4: unix to perl questions
by deyaneria (Acolyte) on Mar 13, 2015 at 16:46 UTC
    Thank you for answering the echo question and for the link. I may consider putting another program on the comp. I'm just very careful as many of my classes require me to put programs on it already(every 5 weeks I end up having to add at least one new program for a class). I try to keep it simple.
Re^4: unix to perl questions
by Anonymous Monk on Mar 14, 2015 at 00:24 UTC
    I guess the reason why our anonymous brother didn't use the latter is that you have the "real" commands for debugging, and to change from "dry run" to "wet run"
    Correct!