3
votes
5answers
68 views
Mulitple Sites with common files
I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, i currently duplicate the files each time i create a new site and uplaod different css a …
-1
votes
0answers
82 views
chown is not changing symbolic link [closed]
I'm trying to change the user/group of a symbolic link with the command:
$ chown -h myuser:mygroup mysymbolic/
But it's not changing. I'm logged in as root. The current user/gro …
2
votes
4answers
109 views
following symbolic links in C
I'm looking to write a C program which, given the name of symbolic link, will print the name of the file or directory the link points to. Any suggestions on how to start?
2
votes
3answers
814 views
How do I overcome the “The symbolic link cannot be followed because its type is disabled.” error when getting the target of a symbolic link on Server 2008?
Following on from a previous question, I am creating a symbolic link on a Server 2008 from a Vista machine using UNC paths. I can create the link just fine. I can go to the Server …
8
votes
2answers
1k views
What does git do to files that are a symbolic link?
If I have a file or directory that is a symbolic link and I commit it to a git repo what happens to it?
I would assume that it leaves it as a symbolic link until the file is delet …
1
vote
1answer
163 views
Check if a file is real or a symbolic link
Is there a way to tell using C# if a file is real or a symbolic link?
I've dug through the MSDN W32 docs (http://msdn.microsoft.com/en-us/library/aa364232(VS.85).aspx), and can't …
0
votes
1answer
60 views
Cygwin SVN symbolic link checkout broken
I've installed the latest version of Cygwin on Vista with SVN, Make and GCC in the installation. When I SVN checkout from a repository with some symbolic links in it, the symbolic …
4
votes
4answers
137 views
Symlinks on windows?
Does anyone know of a way to make/read symbolic links across versions of win32 from Python? Ideally there should be a minimum amount of platform specific code, as I need my app to …
0
votes
2answers
110 views
How do I grant SeCreateSymbolicLink on Windows Vista Home edition
I want to be able to use mklink to create symbolic links on my Windows Vista Home edition computer.
However, I must grant SeCreateSymbolicLink before mklink will be able to functi …
0
votes
0answers
14 views
Is symbolic tools missing?
When I input help sym in Matlab v7.6,it displays the words below:
sym not found.
Use the Help browser Search tab to search the documentation, or
type "help help" for help command …
1
vote
1answer
128 views
Can the Subversion client (svn) derefence symbolic links as if they were files?
I have a directory on a Linux system that mostly contains symlinks to files on a different filesystem. I'd like to add the directory to a Subversion repository, dereferencing the …
0
votes
1answer
187 views
How can I resolve a symbolic link in Perl?
Hi,
I have a symbolic name java or jre or jre1.5 or jre1.6 or java1.5 or java1.6 that will point to the respective directory. Taking into account the first instance, it will look …
6
votes
8answers
2k views
How to resolve symbolic links in a shell script
Given an absolute or relative path (in a Unix-like system), I would like to determine the full path of the target after resolving any intermediate symlinks. Bonus points for also r …
0
votes
1answer
164 views
How can I derefence symbolic links in bash?
How can I take any given path in bash and convert it to it's canonical form, dereferencing any symbolic links that may be contained within the path?
For example:
~$ mkdir /tmp/sy …
0
votes
0answers
52 views
How to tell cscope not to dereference symbolic links?
How do I tell cscope to ignore symbolic links when it is recursively traversing a directory to index source code files?
I do something like this:
find . \( -name "*".hh -or -nam …
