Using rsync when files on one end are all lowercase
- by DormoTheNord
I want to rsync a lot of files from a Windows box to a Linux server.
The problem is, the files on Windows are all mixed case, and the files on the linux server need to be all lowercase.
One solution is to have a script that rsyncs to a different directory on the server, copy the files into the main directory, and then convert them all to lowercase. I'd rather find a more elegant solution, though.
I'd prefer a command line application, but I'd be willing to go with a GUI application if that's the best option.