committed automatically by Makefile
[clqr.git] / upload.sh
blob5c4e3095b1de79e9bdc30b2530987b0ec7c360a3
1 #! /bin/sh
2 REMOTE='ftp.berlios.de'
3 USER='ftp'
4 PASSWORD='x'
5 FTPLOG='ftp.log'
7 ftp -ni $REMOTE <<_FTP>>$FTPLOG
8 quote USER $USER
9 quote PASS $PASSWORD
10 bin
11 cd /incoming
12 mput *.pdf
13 put clqr.tar.gz
14 quit
15 _FTP