File not found using find


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers File not found using find
# 8  
Old 08-31-2010
Code:
ls -i filename

ls -i being the command to show an inode number.

To reduce confusion on -mtime:

-mtime +1 == older than one day
-mtime 1 == equal to one day old
-mtime -1 == less than one day old (<24 hours)

is standard behavior for find. methyl's point is well taken. find does not "jump into" filesystems mounted beneath the directory dirname in: find [dirname]
# 9  
Old 09-02-2010
OS is Sun Solaris and Version is 10
None of the directories are mounted


Code:
find /export/home/ops***/test -exec ls -lad {} \;
drwxrwxr-x   3 opscxs   opsadm       512 Aug 27 11:51 /export/home/opscxs/test
drwxrwxr-x   2 opscxs   opsadm       512 Aug 27 11:51 /export/home/opscxs/test/processed
-rw-rw-r--   1 opscxs   opsadm         3 Aug 27 11:57 /export/home/opscxs/test/processed/test99
-rw-rw-r--   1 opscxs   opsadm         0 Aug 26 11:31 /export/home/opscxs/test/test1
-rw-rw-r--   1 opscxs   opsadm         0 Aug 27 02:00 /export/home/opscxs/test/test2
-rw-rw-r--   1 opscxs   opsadm         0 Aug 27 10:29 /export/home/opscxs/test/test3
-rw-rw-r--   1 opscxs   opsadm         0 Aug 27 10:29 /export/home/opscxs/test/test4
-rw-rw-r--   1 opscxs   opsadm         0 Aug 27 10:51 /export/home/opscxs/test/test5
-rwxrwxrwx   1 opscxs   opsadm       361 Aug 27 11:47 /export/home/opscxs/test/tidy.ksh

# 10  
Old 09-02-2010
Since post #1 the timestamp on the file "test99" has changed.
If in post #1 it was the only file in the directory the directory timestamp and the file timestamp were inconsistent which could be because the file was open for write at the time by some copy process and find didn't see it?
Worth re-testing your "find".
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Assistance with my Find command to identify last part of a file name and report the name found

Hello Forum, We have two bootstraps of Chef in our environment which are identified by colour: /var/chef/cache/cookbooks/bootstrap_cookbooks_version_green and /var/chef/cache/cookbooks/bootstrap_cookbooks_version_red I'm attempting to identify which version is installed based on the name... (11 Replies)
Discussion started by: greavette
11 Replies

2. Shell Programming and Scripting

Find header in a text file and prepend it to all lines until another header is found

I've been struggling with this one for quite a while and cannot seem to find a solution for this find/replace scenario. Perhaps I'm getting rusty. I have a file that contains a number of metrics (exactly 3 fields per line) from a few appliances that are collected in parallel. To identify the... (3 Replies)
Discussion started by: verdepollo
3 Replies

3. UNIX for Dummies Questions & Answers

How to find a file based on pattern & return the filename if found?

Hi all, I am a newbie here. I have this requirement to find a file based on a pattern then return the filename if found. I created a script based on online tutorials. Though, I am stuck & really appreciate if anyone can have a quick look & point me to the right direction? #Script starts... (10 Replies)
Discussion started by: buster_t
10 Replies

4. Linux

Find String in FileName and move the String to new File if not found

Hi all, I have a question.. Here is my requirement..I have 500 files in a path say /a/b/c I have some numbers in a file which are comma seperated...and I wanted to check if the numbers are present in the FileName in the path /a/b/c..if the number is there in the file that is fine..but if... (1 Reply)
Discussion started by: us_pokiri
1 Replies

5. Shell Programming and Scripting

find with xargs to rm found files

I believe what is happening is rm is executing in the script on every directory and on failure of the first it stops although returns status 0. find $HOME -name /directory/filename | xargs -l rm This is the code I use but file remains. I am using sun solaris system which has way limited... (4 Replies)
Discussion started by: Ebodee
4 Replies

6. UNIX for Dummies Questions & Answers

Using find -d and copying to the found directories

Hi again All :) After posting my first thread just a few eeks ago and having such a great response (Thank You once again :) ), I thought I'd perhaps ask the experts again. In short I'm trying to achieve a "find" and "copy" where the find needs to find directories: find -d -name outbox and... (6 Replies)
Discussion started by: Dean Rotherham
6 Replies

7. Shell Programming and Scripting

To find the line no, where the particular pattern is not found

Hi, suppose i have a txt file containing thye following data 2012156|sb3|nwknjps|BAYONNE|NJ|tcg 201221|094|mtnnjprc:HACKENSACK|NJ|tcg 201222|wn3|mtnnjtc|HACKENSACK|NJ|tcg 2018164|ik4|mtnntc|JERSEY CITY|NJ|tcg 20123482|ik4|mtnnjpritc,JERSEY CITY|NJ|tcg... (3 Replies)
Discussion started by: priyanka3006
3 Replies

8. Shell Programming and Scripting

find a value in a file and echo if found

I need to awk a value out of a file and see if it exists in another file. My if statement below returns a positive even if the value doesn't exist. The kky3 is finding the correct field for the value. cat $PRE | while read a do kky2=`echo $a | awk -F: '{print $2}'` echo "kky2 "... (5 Replies)
Discussion started by: MizzGail
5 Replies

9. UNIX for Dummies Questions & Answers

find and remove rows from file where multi occurrences of character found

I have a '~' delimited file of 6 - 7 million rows. Each row should contain 13 columns delimited by 12 ~'s. Where there are 13 tildes, the row needs to be removed. Each row contains alphanumeric data and occasionally a ~ ends up in a descriptive field and therefore acts as a delimiter, resulting in... (1 Reply)
Discussion started by: kpd
1 Replies

10. Shell Programming and Scripting

Help with find command and list in a long format each found file

The purpose of those comands are to find the newest file in a directory acvrdind to system date, and it has to be recursively found in each directory. The problem is that i want to list in a long format every found file, but the commands i use produce unexpected results ,so the output lists in a... (5 Replies)
Discussion started by: alexcol
5 Replies
Login or Register to Ask a Question