« ブラウザよりFTP | Main | 20Q  ソレハ イキモノ? »

Nov 27, 2005

FTP 自動化 for Linux

Linuxにおいて、自動でFTPをし、access_logファイルをGetする
スクリプトを作成しました。

# vi ftp_get.sh
----
#!/bin/sh

## log setting
LOGDIR=/var/log
LOG=$LOGDIR/ftp_get.log

## ftp script
ftp -i -v -n FTP_server_name << END
user User_name Password
cd /accesslog/
ascii
mget *.log
quit
END

## log writting
echo `date` get complete >>$LOG
----

# chmod 711 ftp_get.sh

--実行
# ./ftp_get.sh


--参考ページ
http://sonic64.com/2003-12-01.html
http://www.linux.or.jp/JM/html/netkit/man1/ftp.1.html


←クリック一票

|

« ブラウザよりFTP | Main | 20Q  ソレハ イキモノ? »

Script」カテゴリの記事

Comments

The comments to this entry are closed.

TrackBack


Listed below are links to weblogs that reference FTP 自動化 for Linux:

« ブラウザよりFTP | Main | 20Q  ソレハ イキモノ? »