ok, these are the fact:
1. you need to transfer a .txt file to a linux. from windows? or linux? let's say from windows.
2. I guess this is only one file
3. create an script like:
cd letter:\path\to\source\folder
ftp your.linux.com
user
password
cd /path/to/target/folder
put file.txt
exit
4. config your "windows scheduler" in order to execute the script at some hour.
Is there a way to run something from windows that will run something on linux?
you DON'T need to run anything in the linux box from windows, just make sure that ftp server is running in the linux box.
there is another way from the linux box:
1. share the windows folder where the source file is conained
2. using smbfs (samba) mount that shared folder from the linux box
3. via cron job, just copy the file to a local folder in the linux box.
Cheers.