12 lines
127 B
Bash
Executable File
12 lines
127 B
Bash
Executable File
#!/bin/sh -eu
|
|
|
|
ftp -i -n $FTP_HOST << EEE
|
|
quote USER $FTP_USER
|
|
quote PASS $FTP_PASS
|
|
binary
|
|
cd www
|
|
mput cliget.htmlbr
|
|
quit
|
|
EEE
|
|
|