标签 FTP 下的文章

#!/bin/bash HOST="your_ftp_host" # FTP服务器地址 USERNAME="your_username" # FTP登录用户名 PASSWORD="your_password" # FTP登录密码 LOCALDIR="/path/to/local/directory/" # 要上传的本地目录路径 REMOTEDIR="/remote/directory/" # 远程目标目录路径(如果不存在则会自动创建)

Tags: Linux FTP

Read more

V