After getting my laptop home folder in sync with my server home folder I now had both home folders loaded with files and folders out of place and folders I really didn’t need. I was going to start moving things around to get the home folder organized when I realized when I would sync the applications I used (typically rsync, unison, and ChroSync) would all detect folders missing and delete them then discover the folder I had moved in a different folder and proceed to copy it over to the server. This seems to me a huge waste of time given the fact I was just moving things around.
I searched around the web trying to find a program that would just mimic my actions from the system I was on to the other remote computer. I could not find any such program! I sure someone else has surely come up with the same thought and implemented a solution but I could not find any solution.
So I am creating a set of CLI tools based on a script I call mimic which will take the basic file commands mv, rm, cp, chmod, chown, and chgrp (possibly others) and replicate the commands on the remote computer. In fact, there is no reason the commands can not be replicated on multiple computers.
The basic plan is to use mimic as the working script and create symlinks from it to mmv, mrm, mcp, mchmod, mchown, and mchgrp.
Actually, I could use the new FSEvent stuff to watch changes on my home folder (or any other folder) and mimic the changes automatically regardless of application. Will work on that later