I want to submit a job to LSF using the bsub
command. One of the job argument is "-P argument_1
". So the overall command looks like
bsub -P project_name -n 4 -W 10:00 my_job -P argument_1
But bsub
considers -P argument_1
as the project_name
instead of considering as an argument of my_job
.
Is there anyway to resolve this issue?