Files
dsfin-ansible/roles/ftpclient/files/ftp-session.sh
mpelle426 ed7eabd399 -numerous changes to work with Raspbian 10
-redo of some roles, particularly GUI
-modifications to support working from a "Raspbian Lite" install
2019-07-10 14:24:34 +01:00

14 lines
158 B
Bash

#! /bin/bash
HOST='192.168.90.2'
USER='jody'
PASSWD='jodyw4sh3re'
ftp -n -v $HOST << EOT
bin
user $USER $PASSWD
prompt
lcd /home/pi/ftp
get file.zip
bye
EOT