## Transferring files from local via SSH `~$ scp important.txt [email protected]:/home/kilo/transferred.txt` WHAT YOU NEED to xfer from local to remote machine: 1. IP of remote system (192.168.1.30) 2. user on remote (kilo) 3. name of file on local system (important.txt) 4. location on remote system for file to go to 5. name that you want to store the transferred file as Remote to local: `~$ scp [email protected]:/home/kilo/transferred.txt notes.txt` ## Sharing files from your host with web ON HOST: `~$ python3 -m http.server` Downloader: `~$ wget http://192.168.9.100:8000/filename` Can download from another computer with commands such as curl and wget. Must know the exact name, location of the file as well as port and IP. links: [[_LinuxTerminalCMDIndex]] tags: #linux #terminal #CMD