File Management
Copy files from local to remote
$ scp /path/to/local user@<REMOTE_IP>:/path/to/server/location
Copy files from remote to local
$ scp user@<REMOTE_IP>:/path/to/server/location /path/to/local
Unzip tar files
$ tar -xvzf file.tar.gz
Last updated
Was this helpful?