There are two directories A and B and a file F which is located in B. The working directory is B.

How can you create a symbolic link in A pointing to F in B without changing the directory?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted
ln -s $(pwd)/F /full/path/to/A/link

Just supply the absolute path to both the file you want to link to and the the new symlink file. You can use pwd as a shortcut for your current path (e.g. B).

link|improve this answer
Great, thx for the quick help. – Woltan Sep 14 '11 at 12:37
feedback

Try This (in bash);

 ln -s $(pwd)/${F} ${A}

Or this syntax in other shells

 ln -s `pwd`/${F} ${A}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.