Tagged Questions

2
votes
3answers
91 views

symbolic link without expanding $HOME or “~”?

the basic idea is that I want to link to path that's relative to $HOME, rather than explicitly expand the $HOME variable, as I want to make sure the link works on multiple machines, e.g., when I do ...
1
vote
2answers
74 views

Symbolic link not inheriting permissions

For example, I have foo.sh with 770 permissions. When I do: ln -s foo.sh bar.sh The link bar.sh has 2777 permissions. Why is this? I thought they were meant to be inherited?
1
vote
3answers
44 views

Symbolic links to symbolic links… partial canonicalization

Suppose I create a symbolic link "file2" to a file "file1" two directories above the current location (e.g., "ln -s ../../file1 file2". But now suppose that "file1" is also a symbolic link to a file ...
0
votes
1answer
20 views

shell command which returns the target of the static link

Is there a built-in unix/linux command which returns the target of a specific symbolic link? for example if i made a symbolic link: %> ln -s build_07-24-2011 latest is there a command "foo" ...
0
votes
5answers
307 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 ...