Hi, i need some help regarding command line execution from perl. I have a .cmd script which sets the property to a key. So i execute this script with two arguments. The first arg is a key in a properties value and the second arg is the varibale which gets the value of the property and gets assigned.
Now, i need to call this script from a perl script and gets the value of a property to get assigned to a variable. Using system is not helping.
system ("call set_prop.cmd db.server.name dbserver")
Please help how can i get this working.