Here's an example, assuming the hostname is "nxgdev.ch.hibm.hsbc", the SID is D1PRO, and the listener is on default port 1521:
sqlplus -s BANKREC/password@"(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=nxgdev.ch.hibm.hsbc)(PORT=1521))(CONNECT_DATA=(SID=D1PRO)))" @/export/home/43279636/test.sql
This example assumes you are establishing a connection using TCP/IP, and you are not wanting to use Oracle names resolution.
Additional notes:
I've not addressed Oracle name resolution here. But for starters, you'd be looking for a sqlnet.ora file $ORACLE_HOME/network/admin, and if NAMES.DIRECTORY_PATH refers to TNSNAMES, you'd be looking for a tnsnames.ora file in the same directory. (The TNS_ADMIN environment variable overrides the default directory, but I've already gotten too deep...)
For increased security, I'd recommend you not provide the username and password on the command line, since that would be visible to other users e.g. from the output of "ps -ef".
sqlplus -s /NOLOG <<EOD!
connect BANKREC/password@"(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=nxgdev.ch.hibm.hsbc)(PORT=1521))(CONNECT_DATA=(SID=D1PRO)))"
@/export/home/43279636/test.sql
exit
EOD!