I am looking to run a few scripts within a script, if possible. I wrote a few scripts that parse text from different files, what I want to do is link them so I can run one script that will run all other scripts. like
script1.pl
script2.pl
script3.pl
and script4.pl will run all three, automating the process of having to do each separatly.
I could do it by pasting the majority of the code from all three scripts into script4 and just use package variables, but I dont want to do that. let me know if this makes sense
script1.pl
script2.pl
script3.pl
and script4.pl will run all three, automating the process of having to do each separatly.
I could do it by pasting the majority of the code from all three scripts into script4 and just use package variables, but I dont want to do that. let me know if this makes sense