 | SQL> select instance_name, host_name from v$instance; INSTANCE_NAME ---------------- HOST_NAME ------------------------------------------------------------------ node130 bla001946.company.com
|  |
 | $ cp /com/lib/bla/FLD/lib/libSomeBAL.so .
| |
 | $ scp libSomeBAL.so* eln001823:/com/lib/bla/FLD/lib/ libSomeBAL.so libSomeBAL.orig
So, if you wan to copy the file /home/user/table.csv to a remote host named host.example.com and copy there to jane's home folder, use this command: $ scp /home/user/table.csv [email protected]:/home/jane/
If user of your host is the same as the one on the remote host you can omit user part: $ scp /home/user/table.csv host.example.com:/home/jane/
|  |