To call an oracle stored procedure from shell script you have to use sqlplus

sqlplus -SILENT "user/pwd@sid" <<!
exec "myProc";

using the SILENT option on sqlloader does not output anything related to sqlloader. You only get an output saying the procedure has successfully completed (or any error messages pertaining to the code)