I would like to archive some directories. These directories are contain some softlinks. I should keep these links and files, too.
I didn't found any solution... I tried tar with -h option but it keeps just files, but not links. The simple -cf neither.
tararchives all files including symlinks by default, and-hmakes it archive symlinks' targets instead of the symlinks, so by a process of elimination I guess you want to archive both symlinks and their targets. Is that it?