-redo of some roles, particularly GUI -modifications to support working from a "Raspbian Lite" install
14 lines
158 B
Bash
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
|