0
votes
1answer
21 views
ANT, tar task: create symbolic links in the output .tar.gz file?
We are using Windows as development system and ANT to create the platform-specific bundles. For the Mac OS X specific bundle (.tar.gz file) we are using the tar task. I want to create a symbolic link …
0
votes
2answers
23 views
Issue with symlinks and file uploads…
I'm having this weird thing happen. My Zend Framework (PHP) web application that I have been developing locally works fine on my computer, but once it's uploaded to the server, it thinks that the …
0
votes
2answers
30 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 ' …
0
votes
1answer
22 views
Can’t commit svn controlled directory when referencing through symlink
I have a problem that I describe poorly in another question. I'm posting this to make it more clear what I want to do, and what problem I'm encountering. There is a highly-voted answer, but it doesn't …
0
votes
2answers
33 views
Find symlinks to certain directory or one of its subdirs
Is there an easy way to show whether there are any symlinks in a specified path pointing to a certain directory or one of its children?
2
votes
5answers
403 views
if file is a link on LINUX OS
I am trying to check if a symbolic link exists from korn shell script using "-h filename" command.This works good on HP boxes.
Not sure what is the correct option for Linux,AIX and Solaris boxes.
1
vote
4answers
182 views
Links pointing to absolute path
Is it a good practice that links should always point to absolute path rather than pointing from current directory?
I am talking this with reference - where i need to maintain software and all its …
2
votes
6answers
2k views
Remove a symlink to a directory
I have a symlink to an important directory. I want top get rid of that symlink, while keeping the directory behind it.
I tried 'rm' and get back "rm: cannot remove 'foo'".
I tried 'rmdir' and got …
0
votes
1answer
243 views
Capistrano symlinking problem?
I've this capistrano command.
task :symlink_shared do
run "rm -rf #{current_path}/config/database.yml"
run "ln -nfs #{shared_path}/config/database.yml …
2
votes
2answers
37 views
Ignore symlinks in clean URL’s in .htaccess
Example URL:
example.com/user
/user is both a symlinked directory and a valid URL to content on my site. I user Horde Routes to request the content and all requests to the site go through index.php.
…
1
vote
4answers
121 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 …
3
votes
5answers
77 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 and images.
What …
0
votes
3answers
44 views
Is there a way to edit a symlink without deleting it first?
So I created a symlink:
ln -s /location/to/link linkname
Now I want to change the location that the symlink links to. How do I do that? is there a way to do it without deleting it first?
2
votes
4answers
79 views
Can ‘make’ check if mtime of a dependency is *different* between runs, not just if it’s newer than target?
If foo_user.cpp depends on foo.h, then foo_user.cpp is built, and then foo.h's modification time is set to further in the past, make will not rebuild foo_user.cpp (because foo.cpp is 'newer'). I'd …
11
votes
4answers
2k views
Windows XP vs Vista: NTFS Junction points
Problem: I relied heavily on NTFS Junction points in Windows XP, even though they apparently were not an "official" feature of the operating system. Now MSFT has generously made NTFS Junction points …
