The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
I recently put together a little Bash script to automatically back up one of my hard disks. It works pretty well, except that I always get errors in the console because it tries to copy some of OS X’s internal folders (fsevents and Spotlight).
The obvious solution is to take advantage of rsync’s exclude functionality. Unfortunately, I’m stupid and can’t figure out what I’m doing wrong.
I think what's happening is that the single quotes in your command are getting interpreted literally. You have no file named '/Users/stilist/.rsync/exclude.txt', but you do have a file named /Users/stilist/.rsync/exclude.txt. Remember, unlike Windows file naming conventions, *NIX shells will allow you to create files with all manner of bizarre special characters in them. Instead of using single quotes, I think your rsync command ought to look like this:
I think what's happening is that the single quotes in your command are getting interpreted literally. You have no file named '/Users/stilist/.rsync/exclude.txt', but you do have a file named /Users/stilist/.rsync/exclude.txt. Remember, unlike Windows file naming conventions, *NIX shells will allow you to create files with all manner of bizarre special characters in them. Instead of using single quotes, I think your rsync command ought to look like this:
Posts
Thanks!