« 光学ドライブの再認識 | Main | Google ツール »

Dec 12, 2005

Auto FTP put for Linux

LinuxにおいてFTPを自動で走らせるスクリプトです。
これを応用すればファイルのバックアップにも使えそうです。

# vi /usr/bin/ftp_put.sh
----
## ftp script put
ftp -i -v -n ftp.hogeserver.com << END
user hoge hogehoge
cd mrtg/local
lcd local
ascii
mput *.html
cd images
lcd images
binary
mput *.png

cd ../../kuro
lcd ../../kuro
ascii
mput *.html
cd images
lcd images
binary
mput *.png

quit
END
----
ID:hoge
Passwd:hogehoge

--自動実行させるためにcronに登録します。
下記は3時間おきにアップデートするスケジュールです。
# vi /etc/crontab
----
0 9 * * * root /usr/bin/ftp_put.sh
0 12 * * * root /usr/bin/ftp_put.sh
0 15 * * * root /usr/bin/ftp_put.sh
0 18 * * * root /usr/bin/ftp_put.sh
0 21 * * * root /usr/bin/ftp_put.sh
----


←クリック一票

|

« 光学ドライブの再認識 | Main | Google ツール »

Script」カテゴリの記事

Comments

The comments to this entry are closed.

TrackBack


Listed below are links to weblogs that reference Auto FTP put for Linux:

« 光学ドライブの再認識 | Main | Google ツール »