How to run scp in the background on exadata server
To run scp Command in the background on exadata server.
scp means secured copy used for copying files from one server to another server.
Syntax:
nohup sshpass -p scp -p oracle@SourceSRVR: &
Source: oracle@AIX
target: oracle@Exadata
Password: pass123
source file Path: /u00/app/oracle/acd_1234
target file Path: . (means current directory)
(.) –> Dot means current directory
& ==> to run in the background
Actual command
[oracle@Exadata ~]$ nohup sshpass -p pass123 scp -p oracle@AIX:/u00/app/oracle/acd_1234 . & |
See Also: