If your script is not expecting any input parameters then you have used below syntax to call this shell script.....
exec('/usr/BODS/script/delete_markup.sh',0);
if you need to pass one parameter($1) then use below syntax
exec('/usr/BODS/script/delete_markup.sh','[$1]',0);
Hope this helps you.