Sponsored Content
Top Forums Shell Programming and Scripting How to find files created today in a particular directory? Post 302663417 by sudiptabhaskar on Thursday 28th of June 2012 05:40:10 AM
Old 06-28-2012
Quote:
Originally Posted by jayan_jay
Code:
$ find dir_name -mtime 0




It is displaying the todays files and also previous days files. Below is the proof--

************************************************************
$ pwd
/log/hira
$ find /log/hira -mtime 0
/log/hira
/log/hira/testhira
/log/hira/dba_scripts/awrreports/aces
/log/hira/dba_scripts/tmp
/log/hira/dba_scripts/awrrpt_dump24Hrs_rpt.sql
/log/hira/security
/log/hira/security/test.sh
/log/hira/security/tmp.exe
/log/hira/security/t_part1.txt
/log/hira/security/t_part2.txt
/log/hira/security/t_all.txt
/log/hira/security/pexcap02data.txt
/log/hira/security/pexcap01data.txt
/log/hira/security/commrt.sql
/log/hira/security/commr.txt
/log/hira/security/all_commr.txt
/log/hira/security/all_mastr.txt
/log/hira/security/all_nodes.txt
/log/hira/security/finalout.txt
/log/hira/security/out_comm.txt
/log/hira/security/t_all_nodes.txt
/log/hira/security/t_all_commr.txt
/log/hira/security/hira_1.sh
/log/hira/security/junk_hira_1.sh
/log/hira/junsk
/log/hira/junsk/abc.sh
$ ls -ld /log/hira/testhira
-rw-r--r-- 1 143 sisips 0 Jun 28 14:03 /log/hira/testhira
$ ls -ltr /log/hira/security/all_commr.txt
-rw-r--r-- 1 sisips sisips 1439573 Jun 27 15:54 /log/hira/security/all_commr.txt
$ ls -ltr /log/hira/junsk/abc.sh
-rw-r--r-- 1 oracle dba 26 Jun 28 14:38 /log/hira/junsk/abc.sh
$
****************************************************************

Waiting for your reply
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Find all files created by a specified user in a directory and its subdirectories

Is there a command or shell script which can be used for Finding all files created by a specified userid in a directory and its subdirectories. Say, I want to find all such files in directory /abc as well as in all the subdirectories such as /abc/xyz or /abc/xyz/pqr aqnd so on which was created... (5 Replies)
Discussion started by: abhilashnair
5 Replies

2. UNIX for Dummies Questions & Answers

To list all the files created today with directory path

Hi, Can any one tell the command to list all the files that are created as of today from all the directories? The Command "ls -ltR" is listing all the files. But I want the list of files that has been created as of today along with the directory path:) Thank you in advance.:) Regards,... (4 Replies)
Discussion started by: meetusha.b
4 Replies

3. Shell Programming and Scripting

Files with 0 file size and created today

hi, I am building a script to identify those files created/modified today and with file size 0. I am able to find the files with 0 file size and created/modified in last 24 hrs as shown below but not today (current date), I tried using (touch -t time filenm) but in my version of unix at work it... (7 Replies)
Discussion started by: rushs682
7 Replies

4. Shell Programming and Scripting

Calculate Files Created Today

I need to figure out how to get all the files from a certian dir ./123/*sat files and ./230/*sat files and several other directories which have these *sat files in them. I need to calculate how many were created today and how many yesterday from 2:00 pm on the 28th to 2pm on the 29th. It's a... (1 Reply)
Discussion started by: xgringo
1 Replies

5. Shell Programming and Scripting

Find the directory modified/created before 4 days

Hi, I have an application which creates some directories while running. I want to delete these directories which are 4 days older. i tried find . type d -mtime +1 -print And it is working fine.. but find . type d -mtime +4 -print is not giving any results which are 4 days... (6 Replies)
Discussion started by: Tuxidow
6 Replies

6. Shell Programming and Scripting

ftp - How to download files which created today?

Hello experts, I have written following script to download files which created today. Unfortunately, it's not working. test.ksh: #Defining variables USR='xxx' PASSWD='yyyy' HT='test.test.com' FILE='S*.pdf' XFILE=$(echo find . -type f -mtime 0) ZFILE=$(echo ls -tR|grep 'Jun 8')... (14 Replies)
Discussion started by: dipeshvshah
14 Replies

7. Shell Programming and Scripting

How to find the newly created directory

Hi, I need to create new directory by increasing the number by 1 of extracted lastly created directory. e.g. Log\out_log_1\ Log\out_log_2\ Log\out_log_3\ become Log\out_log_1\ Log\out_log_2\ Log\out_log_3\ Log\out_log_4\ Can anyone help how to do it in c-shell... (3 Replies)
Discussion started by: Andre_2008
3 Replies

8. AIX

How to find the date on which a particular directory is created?

how to find the date on which a particular directory is created? Thanks. (4 Replies)
Discussion started by: samsungsamsung
4 Replies

9. Linux

List all files created today exclude last one

Hi, ALL thanks in advance, i listed all files using this command ls -ltr $(date +%Y%m%d)*.xmlbut i would like to exclude the last one created ; Best regard MEROUAN Use code tags, thanks. (4 Replies)
Discussion started by: merouan
4 Replies

10. Shell Programming and Scripting

List files with date, create directory, move to the created directory

Hi all, i have a folder, with tons of files containing as following, on /my/folder/jobs/ some_name_2016-01-17-22-38-58_some name_0_0.zip.done some_name_2016-01-17-22-40-30_some name_0_0.zip.done some_name_2016-01-17-22-48-50_some name_0_0.zip.done and these can be lots of similar files,... (6 Replies)
Discussion started by: charli1
6 Replies
MOUNTPOINT(1)							   User Commands						     MOUNTPOINT(1)

NAME
mountpoint - see if a directory is a mountpoint SYNOPSIS
mountpoint [-q] [-d] directory mountpoint -x device DESCRIPTION
mountpoint checks if the directory is mentioned in the /proc/self/mountinfo file. OPTIONS
-h, --help Print help and exit. -q, --quiet Be quiet - don't print anything. -d, --fs-devno Print major/minor device number of the filesystem on stdout. -x, --devno Print major/minor device number of the blockdevice on stdout. EXIT STATUS
Zero if the directory is a mountpoint, non-zero if not. AUTHOR
Karel Zak <kzak@redhat.com> ENVIRONMENT
LIBMOUNT_DEBUG=0xffff enables debug output. NOTES
The util-linux mountpoint implementation was written from scratch for libmount. The original version for sysvinit suite was written by Miquel van Smoorenburg. SEE ALSO
mount(8) AVAILABILITY
The mountpoint command is part of the util-linux package and is available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/. util-linux June 2011 MOUNTPOINT(1)
All times are GMT -4. The time now is 05:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy