I'm writing a shell script which will rsync files from remote machines, some linux, some macs, to a central backup server. The macs have folders on the root level containing aliases of all files/folders which need to be backed up. What is a terminal command I can use to resolve the path to the files/folders the aliases point to? (I'll need to pass these paths to rsync)
|
|
I found the following script which does what I needed:
|
||
|
|
|
|
Aliases are symlinks, right? (never know if apple invented their own wheel) If rsync doesn't have a switch to follow the links itself, you can use this function. It will print final tagret of a symlink regardless of how many levels of redirection are there.
|
||||||||
|
