Symbolic Link on Terminal (Mac)

Evening guys - Quick one: Is it possible to do a symbolic link without specifying the path (using ‘.’)

Say i want to create a symlink for the current working directory to be in Desktop. Can it be written like this ->

ln -s . ~/Desktop (’.’ = current working folder)

Try
ln -s $(pwd) ~/Desktop/mylink

1 Like

Thanks bro. Understood, so sorry i’m replying late.

Thanks

yaaaaay ! it worked, thanks.

Thanks a lot