...linux tweaks by morphus.dk
Unfortunately, no one can be told what the Matrix is. You have to see it for yourself. by MORPHUS.DK
Showing posts with label
pipe
.
Show all posts
Showing posts with label
pipe
.
Show all posts
08 February, 2010
How to find files newer then x-days on Linux
Find files newer than x Days on Linux - easy way
in terminal / command line
using "find" command
Code:
:~$ find * -mtime -30 | xargs ls -lh
with pipe
:~$ find -atime $mtime -exec rm -f {} without pipe
Older Posts
Home
Subscribe to:
Posts (Atom)