Sponsored Content
Full Discussion: find - link - error
Top Forums UNIX for Dummies Questions & Answers find - link - error Post 302388756 by Cranie on Thursday 21st of January 2010 10:33:13 AM
Old 01-21-2010
The original command is:

Code:
find ${DATAENV}/raw/archive/storage -mtime +4 -type fd

The ${DATAENV}/raw is the linked area. so find can't tell that the levels preceeding are links.

I tried with the -H and -L and -follow -xdev etc all seem to do nothing and indicate that find thinks its on the /tmp/storage/.... area from the start.

The only way I can see around this is to do some sort of pre-check:

Code:
NEWPATH=$(ls -l ${UKDWENV} | grep raw | sed 's/.*\-> //g')

and then use ${NEWPATH} in the find.

Just seems like there should be a command like ls / other to disclose a files true location.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

how find the link of the file

Hi, I have a flat file which is used by a program. I dont know the program name .This file is in used by that program which is still running ? Is there any way to find out which program is accessing this file just by knowing the file name? Can we check some thing in "ps" just by knowing only... (8 Replies)
Discussion started by: Manish Jha
8 Replies

2. Shell Programming and Scripting

How to link lsof and find cmd?

Hi All, My target is to find the biggest files opened by any process and from that i have to find process id and the corresponding file also to avoid file system being hung-up. Finding the process id: is to kill the process Finding the biggest file: is to remove the file To get the process... (0 Replies)
Discussion started by: Arunprasad
0 Replies

3. UNIX for Dummies Questions & Answers

How to find .dat file in symbolic link

Hi, I am trying to find all files in a directory that have .dat and .int extensions and removing them. rm -f `find ${MY_DIR} -type f -name '*.dat' -o -name '*.int'` This works fine if $MY_DIR is a regular directory. However when $MY_DIR is a symbolic link then this command fails. How... (1 Reply)
Discussion started by: neeto
1 Replies

4. Shell Programming and Scripting

How to find link files

How to find the link files. i have main file, now i want to find all the files linked to it. (4 Replies)
Discussion started by: aju_kup
4 Replies

5. Shell Programming and Scripting

Find Hard Link

Goodmorning everybody. A question: How can i match if a file is an hard link or not? (6 Replies)
Discussion started by: Guccio
6 Replies

6. Shell Programming and Scripting

Find and symbolic link modification time

Hi, I have a directory made up of many symbolic links to folders multiple file systems. I want to return folders modified within the last 50 days, but find is using the link time rather than the target time. find . -type d -mtime -50 Is there a way to either: a) Make a symbolic link... (1 Reply)
Discussion started by: earls
1 Replies

7. Solaris

Not able to find the link for downloading

Hi, Please let me know the link for downloading gcc.c2.95.3-p5 of Solaris 10. Thanks in advance. (3 Replies)
Discussion started by: dudala
3 Replies

8. Shell Programming and Scripting

How to bin/find w/ -follow without searching both link and target

I am interested in searching links to files not found within a directory, so I use the -follow option. However, the dir may contain links to files that are also found within the dir. That means if I bin/find a bunch of files then search their contents using grep, I get redundant information. An... (1 Reply)
Discussion started by: stevensw
1 Replies

9. Shell Programming and Scripting

wanted to find both link file and ordinary file using single find command

find . -type fl o/p is only the ordinary file. where in it wont give the link files. (2 Replies)
Discussion started by: nikhil jain
2 Replies

10. UNIX for Dummies Questions & Answers

AIX - find also in symbolic link

Hi, i tried to search a string, recursively, in subdirectories with: find . -type f -print | xargs grep -s hello i found all files that contain the string "hello" but i would perform a search also in symbolic link, so i tried with find -L . -print | xargs grep -s hello but no result was... (3 Replies)
Discussion started by: nash83
3 Replies
READLINK(3)								 1							       READLINK(3)

readlink - Returns the target of a symbolic link

SYNOPSIS
string readlink (string $path) DESCRIPTION
readlink(3) does the same as the readlink C function. PARAMETERS
o $path - The symbolic link path. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.3.0 | | | | | | | This function is now available on Windows plat- | | | forms (Vista, Server 2008 or greater). | | | | +--------+---------------------------------------------------+ RETURN VALUES
Returns the contents of the symbolic link path or FALSE on error. EXAMPLES
Example #1 readlink(3) example <?php // output e.g. /boot/vmlinux-2.4.20-xfs echo readlink('/vmlinuz'); ?> SEE ALSO
is_link(3), symlink(3), linkinfo(3). PHP Documentation Group READLINK(3)
All times are GMT -4. The time now is 02:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy