Xargs + Find Help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Xargs + Find Help
# 1  
Old 09-25-2011
Xargs + Find Help

Guys i want to run a command to list all directories that havn't been modified in over 548 days ( 1.5 yrs ).
Id like to run a script to first print what the command finds ( so i get a list of the files pre move ... i have a script set for this :
find /Path/Of\ Target/Directory/ -type d -mtime +548 -print0 | xargs -0 du -cHh print >/tmp/archive_log_file.txt 2>&1

What id like to run after is a MOVE of those directories listed into another directory on another volume.The directories in question are exactly 3 in depth from the parent directory.
I need to preserve the complete structure of each directory, as the directory is full of associated files upto fifty individual files per directory.
These directories can be up to 10GB each and there might be over 100 of them so exec isn't going to handle it ..Xargs and mv seem the best case, unless anyone has a better take on this ..
# 2  
Old 09-25-2011
Be carefull of relying on modification times of directories, if files are updated within a directory the mtime of the dir will not change. It's only if a file is added or removed from the directory that the timestamp is changed, I usually find it much safer to check the times on individual files.
# 3  
Old 09-25-2011
Would opening a folder cause the mod date to change?
Im struggling with a command to mv the whole directory with no recursion from a depth of 3 directory ie only mv directory 3 deep, if i just move the files ill lose the associations withinside of that directory, any help would be great, my pipe fu isnt great...
# 4  
Old 09-26-2011
Opening a folder shouldn't cause the mtime to change. But creating a file in the directory will.

Now suppose you had these folders shared with windows machines. Windows Explorer creates tumbnail cache files (thumbs.db) in any directory it opens that contains documents that have thumbnails. So then answer is both no and yes.

As for easy way to move files, if you have a fairly recent version of gnuutils you can avoid getting sub-directory files with something like this:

Code:
find /path/to/your/directory -maxdepth 1 -type f -print0 | xargs --null --no-run-if-empty mv --target-directory=/new/dir/for/your/files/

On other systems --null == -0 --no-run-if-empty == -r --target-directory == -t
# 5  
Old 09-26-2011
Chubler thanks for this,BSD darwin, no win/linux...
the '--' command is illegal so tried replacing with suggestions... no dice ..
find /path/to/your/directory -maxdepth 1 -type f -mtime +5 -print0 | xargs -0 mv -v /path/to/new/directory/ (-v is supposed to give verbose show of files after moving)
whinges about the usage .. Its like xargs isnt piping the source directory path to mv and mv wants both source and target directory paths written for it ala : mv /source/directory/ /target/directory/
fsking thing.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

OSX: find,xargs guru?

hello, bash 4.2+ osx 10.11.6 i looking for a nice compact one-liner and need a little help using find and xargs i'm writing a script to recursively search through directories looking for git and hg repos and update them. this bit of code searches and finds them git repos. find `pwd`... (2 Replies)
Discussion started by: f77hack
2 Replies

2. Shell Programming and Scripting

Help with find, xargs and awk

Hi, I want to find some files and then search for some lines in it with a particular pattern and then write those lines into a file. To do this I am using something like this from command prompt directly. cd /mdat/BVG find -name "stmt.*cl" -newer temp.txt | xargs -i awk '/BVG-/{print}' {} >... (7 Replies)
Discussion started by: Sandhya Harsh
7 Replies

3. Shell Programming and Scripting

xargs vs exec with find:

Hi All, i'm trying to create a tar of all the .txt files i find in my dir . I've used xargs to acheive this but i wanted to do this with exec and looks like it only archives the last file it finds . can some one advice what's wrong here : find . -type f -name "*.txt" -print0 | xargs -0... (9 Replies)
Discussion started by: Irishboy24
9 Replies

4. UNIX for Dummies Questions & Answers

find/xargs/*grep: find multi-line empty "try-catch" blocks - eg, missing ; not in a commented block

How can I recursively find all files in a directory and print out the file and first line number of any text blocks that match the below cases? This would seem to involve find, xargs, *grep, regex, etc. In summary, I want to find so-called empty "try-catch blocks" that do not contain code... (0 Replies)
Discussion started by: lifechamp
0 Replies

5. Shell Programming and Scripting

find and xargs

hi, i've been trying to figure this weird error but I cannot seem to know why. I am using below find command: find . \( ! -name . -prune \) -type f -mtime +365 -print The above code returns no file because no files are really more then 365 days old. However, when I use xargs, its... (9 Replies)
Discussion started by: The One
9 Replies

6. Shell Programming and Scripting

find with xargs to rm found files

I believe what is happening is rm is executing in the script on every directory and on failure of the first it stops although returns status 0. find $HOME -name /directory/filename | xargs -l rm This is the code I use but file remains. I am using sun solaris system which has way limited... (4 Replies)
Discussion started by: Ebodee
4 Replies

7. UNIX for Dummies Questions & Answers

XARGS and FIND together

I am trying to delete files older than 60 days from a folder: find /myfolder/*.dat -mtime +60 -exec rm {} \; ERROR - argument list too long: find I can't just give the folder name, as there are some files that I don't want to delete. So i need to give with the pattern (*.dat). I can... (3 Replies)
Discussion started by: risshanth
3 Replies

8. Shell Programming and Scripting

find | xargs cat

Hi, I am having trouble getting a combination of commands to work. I need to traverse through all sub-directories of a certain directory and 'cat' the contents of a particular file in the sub-directories. The commands on their own work but when I combine them I get no output. The... (4 Replies)
Discussion started by: DownunderDave
4 Replies

9. Shell Programming and Scripting

Problem using find and xargs

I'm using Imagemagick to create thumbnails for a large directory tree. The only thing I can't see is how to get it to write the thumbnails to a "thumbs" subdirectory! Either of these two commands from the Imagemagick site does most of the job: find -name '*.jpg' | xargs -n1 sh -c 'convert $0... (5 Replies)
Discussion started by: quixote
5 Replies

10. Shell Programming and Scripting

find | xargs cat

Hai I just want to find a file *.txt in particular direcotry and display the file name puls the content. Do someone know hot to do this, thanks. I try : find test/ -name '*.txt' | xargs cat but It does'nt print out the file name, i want something below print out in my screen : test/1.txt... (4 Replies)
Discussion started by: asal_email
4 Replies
Login or Register to Ask a Question