Tagged Questions
8
votes
8answers
8k views
What is the Bash command to create a hardlink to a directory in OS X?
How do you create a hardlink (as opposed to a symlink or a Mac OS alias) in OS X that points to a directory? I already know the command "ln target destination" but that only works when the target is a ...
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 ...
0
votes
5answers
306 views
shell script to link specific files up one level
I've got a folder that's got a whole lot of folders inside, which each contain a movie file. Now I want to be able to see all these movies at one time (but I have to preserve the folder structure) so ...