I am connecting to my server via FTP (that is the only way I have access to this server in particular). I need to utime a command via FTP to the server. Other commands work but when I try something like
site for file in *;do utime 20120101084400 ${file}; done;
to change all dates in a given directory, I receive an error that says usage: form format or invalid command depending on the variation of that command I try.
I tried this command (without the site part) on my local unix and it works but not remotely via FTP.
How do I do that? If there's a way to do that recursively it will be a bonus... :)
thanks.

