I am trying to run a bsub command from a perl script in the following way:
system ("bsub -select "testid::1" -q normal");
but I think perl is getting confused because of the double quotes in "testid::1"
. What is the proper way to implement this?