Sponsored Content
Top Forums Shell Programming and Scripting Search files with today date and files come anytime in between 10 pm to 1 am Post 302868041 by pallvi_mahajan on Friday 25th of October 2013 05:15:31 PM
Old 10-25-2013
File searching

i want to automate one task in unix and make one script.

There is directory in which everyday 2 files comes and that files come anytime in between 10 pm to 1 am.

file name is batm53_20131025_BARC5300001201310240000000200004233.221341696408

If u see filename has 3 part

1) batm53 which is constant
2) date when file arrive in directory
3) this part is BARC5300001201310170000000200004233.221341696408 in which BAR5300001 is constant and then after date of file . suppose today is 24th oct and file come after 1 am then second part of file name shows 25th oct but in third part after BAR5300001 it shows 24th oct date ( 20131024)

i am facing issue in this scenario

if file comes in between 10 pm to 12 am then i can make script easy with help of find command but i am facing issue in making that part how i can check if file comes after 12 am bceasue that file should be previous date and after 12 am date should change.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Sort files by date, not showing files from today

Hi all, i'm new here in this forum. I really like the helpful answers in this forum. Here a short question. For a script i have to sort files by date and exclude the files of the actual date. Sorting the files by date and preparing the output for awk is done by this line: ls -l... (3 Replies)
Discussion started by: carlosdivega
3 Replies

2. Shell Programming and Scripting

Script to copy log files with today's date

I am a newbie to scripting. I need a korn shell script to copy log files of current day to archive folder and rename with current days date stamp. I would really appreciate your help. File structure is as follows. Everyday files get overwritten, so I need copy to a archive directory and... (3 Replies)
Discussion started by: mdncan
3 Replies

3. Shell Programming and Scripting

Search files between a date range

Hi people A newbie here, thrown into the deep end. I want to select the group of files with in a range of dates and perform some operation on it. Are there inbuild date libraries i can use? I did read thru the old posts on this topic. Couldnt get much idea :(, basically want to know how I... (7 Replies)
Discussion started by: zcanji
7 Replies

4. Shell Programming and Scripting

script to search context from 2 files based on date and name

Please Close thread- Thank You. (1 Reply)
Discussion started by: ezmethod
1 Replies

5. Shell Programming and Scripting

Search for files on a particular date

I have list of files generated on 2 dates which are shown below: -rw-r----- 1 bobby ccsdba 580945 Aug 16 16:13 file 1 -rw-r----- 1 bobby ccsdba 580945 Aug 16 16:16 file 2 -rwxrwxr-x 1 Shaan ccsdba 4422724 Aug 16 16:28 file 3 -rwxrwxr-x 1 bobby ccsdba 794 ... (1 Reply)
Discussion started by: bobby1015
1 Replies

6. Debian

Search files that start with current date

hi all, i need to find same files in my directory that looks like this format 20121017145949639.xml (YYYYMMDD*.xml) thanks for help (3 Replies)
Discussion started by: merouan
3 Replies

7. Shell Programming and Scripting

Shell Scripting: Copy Files with Today's date

I was wondering the best way about finding files that were created today and copy them to a directory (grep ?). There can be multiple files for todays date or none. I am looking to copy all of the .lis files for todays date. I may need to modify the filename to include todays date but for the... (4 Replies)
Discussion started by: smkremer
4 Replies

8. Shell Programming and Scripting

Move all files except sys date (today) files in Solaris 10

I want to move all files from one directory to another directory excluding today (sysdate files) on daily basis. file name is in pattern file_2013031801, file_2013031802 etc (2 Replies)
Discussion started by: khattak
2 Replies

9. Shell Programming and Scripting

Search pattern in today's files only

Hi Friends, I am in search of unix command which can search a particular pattern in all files which are created/modified today ONLY. Which is the best way to achieve this? Thanks in advance. (1 Reply)
Discussion started by: Nakul_sh
1 Replies

10. UNIX for Beginners Questions & Answers

Search files between date ranges - Ctime usage

Hello, I am a noob and need some help. I am trying to find files created between a date range. For Example: These are files in directory. -rw-r--r-- 1 user staff 6 May 8 09:43 file1.txt -rw-r--r-- 1 user staff 6 May 8 09:43 file2.txt -rw-r--r-- 1 user... (8 Replies)
Discussion started by: r@v!7*7@
8 Replies
Perl::Critic::Policy::ValuesAndExpressions::ProhibitLeadUsereContributed PerlPerl::Critic::Policy::ValuesAndExpressions::ProhibitLeadingZeros(3pm)

NAME
Perl::Critic::Policy::ValuesAndExpressions::ProhibitLeadingZeros - Write "oct(755)" instead of "0755". AFFILIATION
This Policy is part of the core Perl::Critic distribution. DESCRIPTION
Perl interprets numbers with leading zeros as octal. If that's what you really want, its better to use "oct" and make it obvious. $var = 041; # not ok, actually 33 $var = oct(41); # ok chmod 0644, $file; # ok by default dbmopen %database, 'foo.db', 0600; # ok by default mkdir $directory, 0755; # ok by default sysopen $filehandle, $filename, O_RDWR, 0666; # ok by default umask 0002; # ok by default CONFIGURATION
If you want to ban all leading zeros, set "strict" to a true value in a .perlcriticrc file. [ValuesAndExpressions::ProhibitLeadingZeros] strict = 1 AUTHOR
Jeffrey Ryan Thalhammer <jeff@imaginative-software.com> COPYRIGHT
Copyright (c) 2005-2011 Imaginative Software Systems. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license can be found in the LICENSE file included with this module. perl v5.14.2 2012-06-0Perl::Critic::Policy::ValuesAndExpressions::ProhibitLeadingZeros(3pm)
All times are GMT -4. The time now is 06:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy