Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Resource forks ?' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Resource forks ?
Authored by: DanFrakes on May 28, '04 11:26:57PM
The problem with using "ditto" in this scenario is that you really don't want to copy files, or even "move" them; you simply want to change the pathname of the home directory.

If you were to use ditto, you'd basically be creating copies of everything -- you'd end up with two copies, and you'd later have to go through and delete the originals. "mv" simply keeps everything exactly where it is on the drive, but changes the logical path to those files.

So for the example of changing a short username, after changing the name you want your home directory to have the same name as your new username. A "mv" command is the safest way to do this.

[ Reply to This | # ]