Added special characters command to FTP file dump

This commit is contained in:
tandera 2023-10-13 19:19:28 -03:00 committed by GitHub
parent 176ca82ff3
commit c0a157ed69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -158,6 +158,12 @@ wget -m ftp://anonymous:anonymous@10.10.10.98 #Donwload all
wget -m --no-passive ftp://anonymous:anonymous@10.10.10.98 #Download all
```
If your user/password has special characters, the [following command](https://stackoverflow.com/a/113900/13647948) can be used:
```bash
wget -r --user="USERNAME" --password="PASSWORD" ftp://server.com/
```
## Some FTP commands
* **`USER username`**