I am writing a script to strip data from a log, strip last month and empty the log for the comming month. It works great at the moment, but during testing I decided to change the date to 12/31 and when I ran it, it did not find tomorrows date. Further testing revealed that no dbl digit month would pick up the next months date.
I am using "TZ=CST6CDT-24 date +%d" to list tomorrows date, ie...
I can set the date to 0731 and it works fine, but if I do a month with dbl digits (10, 11, 12) it returns like below....
This works for every day except the last day of the month on dbl digit months.
hi,
We have a huge directory that ha 5.1 Million files in it. We are trying to get the file name and modified timestamp of the most recent 3 years from this huge directory for a migration project.
However, the ls command (background process) to list the file names and timestamp is running for... (2 Replies)
Hi everyone,
this strange error suddenly popped up out of no where
when I do a directory listing , the date part doesn't appear
root@oradb:/backup>ls -la
total 58069304
drwxr-xr-x 3 root system 4096 23 ▒▒▒ 21:56 .
drwxr-xr-x 44 root system 1536 23 ▒▒▒ 21:47... (4 Replies)
Hello,:)
Can anyone help me out in giving a script for my requirement please..
I have a number of files in a directory like
somenumber.0100
somenumber.0130
somenumber.0159
somenumber.0300
somenumber.0330
somenumber.0525
.
.
.
here, the number after the dot is the time (hhmm)
I... (6 Replies)
Solaris 10
ksh88
Sorry for re-hashing some of this, but I can't find a proper solution in the forums.
Starting with /a/archive containing (on and on date formatted directories)
20060313 20080518 20100725 20121015
20060314 20080519 ... (1 Reply)
listing based on user.
I have files in some folder that come from many user
-rwxrwxr-x 1 ratih pbank 4827112 Jun 8 08:37 S92TA-8.sgy
-rwxrwxr-x 1 ratih pbank 4724568 Jun 8 08:37 S92TA-6.sgy
-rwxrwxr-x 1 ratih pbank 4929656 Jun 8 08:37 S92TA-19.sgy
-rwxrwxr-x 1 ratih ... (4 Replies)
I'm trying to list files, first by size and I'm using something like this
ls -l|awk '{print $5,$6,$7,$8,$9|"sort -nr"}'|more
Now I'd like to just do the same listing but only for files with the year 2009 in the $8 field or even anything less than 2011. (5 Replies)
Hello.
I want to make an unix script which create a file with the name and the date of creation of the different files that there are in a directory.
Can do you please help me?
Thank you in advance. (3 Replies)
Hi
I would like to a long list of files up to a given date. I've tried:
ls -al > filelist
but this command gives me all the files. I've also have tried the find command:
find . -mtime -10 -type f -print > filelist
This gives me information on active file within the past 10 days and... (2 Replies)