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