Alright, I have run some Mandrake Disk for a test - and it wrote to my Suse System without even asking me! Shit! It made some changes which I now need to know (no discussion on this please) Now I need to know all files that have been changed on FEB 20 at 1930 plus/minus 10 minutes. I took a look at man find, man find did not tell me much. So, at a guess I ask this here: How do I find the above described files? I need to know all files that have been changed on FEB 20 at 1930 plus/minus 10 minutes. Thanks! -- *º¤.,___,.¤º*¨¨¨*¤ =Oliver@home= *º¤.,¸¸¸,.¤º*¨¨*¤ I / __|__ http://www.bmw-roadster.de/Friends/Olli/olli.html I I / / |_/ http://www.bmw-roadster.de/Friends/friends.html I I \ \__|_\ http://groups.yahoo.com/group/VGAP-93 I I \___| mailto:VGAP-93-subscribe@yahoogroups.com I
Telek0ma iBBMS - moving house, but online! +49....TRSi1 <<<
In a previous message, Oliver Ob wrote:
Now I need to know all files that have been changed on FEB 20 at 1930 plus/minus 10 minutes.
The Gnome2 search tool lets you frame queries based on last-modified, and is pretty fast. John -- John Pettigrew Headstrong Games john@headstrong-games.co.uk Fun : Strategy : Price http://www.headstrong-games.co.uk/ Board games that won't break the bank Valley of the Kings: ransack an ancient Egyptian tomb but beware of mummies!
John Pettigrew schrieb:
In a previous message, Oliver Ob wrote:
Now I need to know all files that have been changed on FEB 20 at 1930 plus/minus 10 minutes.
The Gnome2 search tool lets you frame queries based on last-modified, and is pretty fast.
No please. I want to know about how to do that from console and with find. Thanks mate! -- *º¤.,___,.¤º*¨¨¨*¤ =Oliver@home= *º¤.,¸¸¸,.¤º*¨¨*¤ I / __|__ http://www.bmw-roadster.de/Friends/Olli/olli.html I I / / |_/ http://www.bmw-roadster.de/Friends/friends.html I I \ \__|_\ http://groups.yahoo.com/group/VGAP-93 I I \___| mailto:VGAP-93-subscribe@yahoogroups.com I
Telek0ma iBBMS - moving house, but online! +49....TRSi1 <<<
On Wed, Feb 26, 2003 at 03:54:22PM +0100, Oliver Ob wrote: : Alright, I have run some Mandrake Disk for a test - and it wrote : to my Suse System without even asking me! Shit! It made some changes : which I now need to know (no discussion on this please) : : Now I need to know all files that have been changed on : FEB 20 at 1930 plus/minus 10 minutes. : : I took a look at man find, man find did not tell me much. : : So, at a guess I ask this here: : : How do I find the above described files? : I need to know all files that have been changed on : FEB 20 at 1930 plus/minus 10 minutes. Off the top of my head, I would do something like the following: touch -t 200302201920 /tmp/bogus0 touch -t 200302201940 /tmp/bogus1 find / -newer /tmp/bogus0 -a ! -newer /tmp/bogus1 Though, this will present a corner-case solution in the fact that at the very least bogus1 will be one of the files returned. Good enough for gov't work. :) --Jerry Open-Source software isn't a matter of life or death... ...It's much more important than that!
How do I find the above described files? I need to know all files that have been changed on FEB 20 at 1930 plus/minus 10 minutes.
Let's suppose that start of the period of interest was A minutes ago. Similarilly lets assume end of the period B minutes ago. The command is: find / -mmin -A -not -mmin -B Have fun... Boguslaw -- -------------------------------------------------------------- Boguslaw Gorczyca mailto:gorczycb@radzisz.krakow.pl http://www.radzisz.krakow.pl/~gorczycb --------------------------------------------------------------
Boguslaw Gorczyca schrieb:
How do I find the above described files? I need to know all files that have been changed on FEB 20 at 1930 plus/minus 10 minutes.
Let's suppose that start of the period of interest was A minutes ago. Similarilly lets assume end of the period B minutes ago.
The command is:
find / -mmin -A -not -mmin -B
Thanks Bogus, but I dont quite get that. Do I need to calculate the minutes back to FEB 20 now? -- *º¤.,___,.¤º*¨¨¨*¤ =Oliver@home= *º¤.,¸¸¸,.¤º*¨¨*¤ I / __|__ http://www.bmw-roadster.de/Friends/Olli/olli.html I I / / |_/ http://www.bmw-roadster.de/Friends/friends.html I I \ \__|_\ http://groups.yahoo.com/group/VGAP-93 I I \___| mailto:VGAP-93-subscribe@yahoogroups.com I
Telek0ma iBBMS - moving house, but online! +49....TRSi1 <<<
Boguslaw Gorczyca schrieb:
How do I find the above described files? I need to know all files that have been changed on FEB 20 at 1930 plus/minus 10 minutes.
Let's suppose that start of the period of interest was A minutes ago. Similarilly lets assume end of the period B minutes ago.
The command is:
find / -mmin -A -not -mmin -B
Have fun...
Boguslaw
-- -------------------------------------------------------------- Boguslaw Gorczyca mailto:gorczycb@radzisz.krakow.pl http://www.radzisz.krakow.pl/~gorczycb --------------------------------------------------------------
-- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
Thanks, works. But I wanted to ask something different but mistakenly put it into the wrong words: Isnt there a way using "days" or "date" just like in windoze 98? Only minutes? THAT is what I wanted to ask. Thanks again, it worked well. Fixed! Thank you! -- *º¤.,___,.¤º*¨¨¨*¤ =Oliver@home= *º¤.,¸¸¸,.¤º*¨¨*¤ I / __|__ http://www.bmw-roadster.de/Friends/Olli/olli.html I I / / |_/ http://www.bmw-roadster.de/Friends/friends.html I I \ \__|_\ http://groups.yahoo.com/group/VGAP-93 I I \___| mailto:VGAP-93-subscribe@yahoogroups.com I
Telek0ma iBBMS - moving house, but online! +49....TRSi1 <<<
But I wanted to ask something different but mistakenly put it into the wrong words: Isnt there a way using "days" or "date" just like in windoze 98? Only minutes?
THAT is what I wanted to ask.
;))) You need resolution in minutes, so you have to use minutes. According to the find manual one is able to select resolution in minutes or days (24*hour or start of the given day). No other possibility. Boguslaw -- -------------------------------------------------------------- Boguslaw Gorczyca mailto:gorczycb@radzisz.krakow.pl http://www.radzisz.krakow.pl/~gorczycb --------------------------------------------------------------
Boguslaw Gorczyca schrieb:
But I wanted to ask something different but mistakenly put it into the wrong words: Isnt there a way using "days" or "date" just like in windoze 98? Only minutes?
THAT is what I wanted to ask.
;)))
You need resolution in minutes, so you have to use minutes.
According to the find manual one is able to select resolution in minutes or days (24*hour or start of the given day).
No other possibility.
Boguslaw
--
Many thanks for your help. It worked, and I was able to repair the listed files. If you need any help, get me on the list... Oliver -- *º¤.,___,.¤º*¨¨¨*¤ =Oliver@home= *º¤.,¸¸¸,.¤º*¨¨*¤ I / __|__ http://www.bmw-roadster.de/Friends/Olli/olli.html I I / / |_/ http://www.bmw-roadster.de/Friends/friends.html I I \ \__|_\ http://groups.yahoo.com/group/VGAP-93 I I \___| mailto:VGAP-93-subscribe@yahoogroups.com I
Telek0ma iBBMS - moving house, but online! +49....TRSi1 <<<
participants (4)
-
Boguslaw Gorczyca
-
Jerry A!
-
John Pettigrew
-
Oliver Ob