10 lines
93 B
Bash
10 lines
93 B
Bash
|
|
#! /bin/sh
|
||
|
|
|
||
|
|
# copy a file to Windows machine for testing
|
||
|
|
|
||
|
|
ftp xp << EOT
|
||
|
|
pass
|
||
|
|
bin
|
||
|
|
put $1
|
||
|
|
EOT
|
||
|
|
|