Upload File On Server
scp -i <ssh-private-key-path> <file-local-path>  <file-remote-destination>
scp -i ~/.ssh/work            ./notes2.txt       mahesh@example.com:/home/team1
    
    
 
 
 
  
  
  Download File From Server
scp -i <ssh-privae-key-path> <file-on-server-path>                      <file-local-destionation>
scp -i ~/.ssh/work           mahesh@example.com:/home/team1/notes2.txt  ./
    
    
 
 
 
  
  
  Remote Download on Server
wget <file-url>
wget https://ipfs.io/ipfs/QmNf1UsmdGaMbpatQ6toXSkzDpizaGmC9zfunCyoz1enD5/penguin/17.png
    
    
 
 
 
             
          
Top comments (0)