ncftp 中的 ncftpput 指令可用來上傳
參數說明:
-R – 於上傳目錄的時後用的到,example: ncftpput -m -u ftpuser -p ftppassword serverIP /目的根目錄/ 來源目錄/
-m – 當目的端無此目錄,來源端上傳檔案時建立此目錄,example: ncftpput -m -u ftpuser -p ftppassword serverIP /目的根目錄/不存在的目錄 來源檔案
-z – 要續傳
-Z – 不要續傳(預設)
刪除檔案的方式
編輯檔案: vi rm.txt (內容如下)
cd 某目錄
rm -r 某檔案
然後執行
ncftp -u ftp -p 123456 192.168.1.230 < rm.txt
結果
NcFTP 3.2.1 (Jul 29, 2007) by Mike Gleason (http://www.NcFTP.com/contact/).
Connecting to 192.168.1.230…
ProFTPD 1.2.10 Server (FTP SERVER) [192.168.1.230]
Logging in…
User nasftp logged in.
Logged in to 192.168.1.230.
Disk free space at this directory is 316,269,424 KB.
CWD command successful
Disk free space at this directory is 316,269,424 KB.
CWD command successful
或者
echo “cd 目錄 ; rm -r 檔案” | ncftp -u ftp -p 123456 192.168.1.230
留言