Hello,
I am writing a perl script to execute another scripts , one is my.ini , which I execute in shell via "source my.ini", but I don't know how to run this command via shell script.
I made a simple test.ini in which I just wrote "echo hello", when I write source test.ini then shell terminal shows hello but when I write the command system ("source test.ini"), then it executes but don't show the hello text on output screen .
the other two are perl scripts , I want to execute them one by one with this current perl script .
Is this command ok for that
system "perl my.pl"
Thanks
NOTE : I started learning perl scripting today