Quantcast
Channel: convert symbolic link with relative path to absolute using find - Stack Overflow
Browsing latest articles
Browse All 2 View Live

Answer by Donovan for convert symbolic link with relative path to absolute...

find some_path -type l | while read LINK ; do ln -sf "$(readlink -f "$LINK")""$LINK"doneYou could easily concatenate this to one line.

View Article



convert symbolic link with relative path to absolute using find

I want to do convert all the symbolic links i find to be absolute path so that i can move the entire dir around. So i thought doing something like convert relative symbolic links to absolute symbolic...

View Article
Browsing latest articles
Browse All 2 View Live




Latest Images