How to convert symlink to regular file?
There is no single command to convert a symlink to a regular file. The most direct way is to use readlink to find the file a symlink points to, and then copy that file over the symlink: cp –remove-destination `readlink bar.pdf` bar.pdf Of course, if bar.pdf is, in fact, a regular file to begin with, … Read more