If we got this command line:
python file.py --gsgds dsgsdg --dg dgdg --dg 'gdgd'
And now, let's say we want to break this command and run another command while it is running, something like that:
python file.py --gsgds dsgsdg --dg dgdg --dg '`sleep 10`'
When I try to add a sleep 10
between the two quotes, it doesn't work. Please keep in mind that I must break the command between the two quotes. ('[inject here]')
Any ideas?