Tagged Questions
1
vote
4answers
1k views
Create broken symlink with Python
Using Python I want to create a symbolic link pointing to a path that does not exist. However os.symlink just complains about "OSError: [Errno 2] No such file or directory:".. This can easily be done ...
0
votes
0answers
238 views
symlink over ssh fails
Please help me out, as I'm trying to execute 'rm -Rf' and 'ln -s' on a bunch of servers through 'ssh -i' and somehow symlink fails, although running directly on servers works...
$ ssh -i ...
0
votes
1answer
360 views
Symbolic Links in Ubuntu Recursively link to files in one directory to another
After searching stackoverflow and Google for the past hour I thought I would ask. If the title does not make sense here is what I am looking to achieve.
/var/www/xxx/
Say there are files in this ...
0
votes
2answers
154 views
mdfind used for creating symlinks not working as expected
I am trying to use the output from 'mdfind' to create a bunch of symlinks. Output of 'mdfind' is like this:
/pathtofile1/
/pathtofile2/
/pathtofile3/
So, I used 'sed' to add 'ln -s ' to the ...