need to move find results


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting need to move find results
# 1  
Old 12-19-2007
need to move find results

I am looking for files of a certian type and logging them. After they are logged they need to be moved to a different directory. HOw can i incorporate that in my current script?

CSV_OUTFILE="somefile.csv"
find . -name W\* -exec printf "%s,%s,OK" {} `date '+%Y%m%d%H%M%S'` \; > ${CSV_OUTFILE}

They would need to be moved from the current directory to one at the same level. For example:

From ./name/inbox/file
To ./name/archive/file
# 2  
Old 12-19-2007
Have you considered using "mv" ?
# 3  
Old 12-19-2007
lol, yeah, let me clarify my question.

How can I apply the mv command to a list of find results?
# 4  
Old 12-19-2007
How about giving us an example of what the CSV output would be....
# 5  
Old 12-20-2007
cp

Hi,

i am not quiet sure about your req.
Suppose it is very close to follow:
Hint: Find all the .txt file in current directory, record them in file.log file and then copy them to the parent directory.

Hope you can finish it according to your exact requirements.


code:
Code:
for i in `find . -name \*.txt`
do
	echo $i >> file.log
	cp $i ../	
done

# 6  
Old 12-20-2007
I guess I'd better clarify a bit.

Here is my current script, it formats the output of the find command:

CSV_OUTFILE="somefile.csv"
find . -name W\* -exec printf "%s,%s,OK" {} `date '+%Y%m%d%H%M%S'` \; > ${CSV_OUTFILE}

Now, I need to modify this script to also use the output of the same find command as a list of files that need to be moved.

The CSV file does not need to be moved, later in the script I FTP it to another server where the results are parsed and each time this script is run, it is overwritten anyway.

Hope that explains it better. Smilie
# 7  
Old 12-20-2007
Quote:
Originally Posted by pimentelgg
I guess I'd better clarify a bit.

Here is my current script, it formats the output of the find command:

CSV_OUTFILE="somefile.csv"
find . -name W\* -exec printf "%s,%s,OK" {} `date '+%Y%m%d%H%M%S'` \; > ${CSV_OUTFILE}

Now, I need to modify this script to also use the output of the same find command as a list of files that need to be moved.

The CSV file does not need to be moved, later in the script I FTP it to another server where the results are parsed and each time this script is run, it is overwritten anyway.

Hope that explains it better. Smilie

Code:
CSV_OUTFILE="somefile.csv"
find . -type f -name W\* \( -exec echo echo {} \> ${CSV_OUTFILE} \; -a -exec echo cp {} /new_dir/ \&\& rm {} \; \) | sh -c

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Weird 'find' results

Hello and thanks in advance for any help anyone can offer me I'm trying to learn the find command and thought I was understanding it... Apparently I was wrong. I was doing compound searches and I started getting weird results with the -size test. I was trying to do a search on a 1G file owned by... (14 Replies)
Discussion started by: bodisha
14 Replies

2. Shell Programming and Scripting

HP-UX find -mmtime results are one day off

Hey, I am writing a script to delete log files that are older than one day (I'm going to run it weekly). Basically, it should work so that it only keeps the current day, but keeping the previous day as well isn't a dealbreaker. I am running the following line on the files listed below: ... (1 Reply)
Discussion started by: unaligned
1 Replies

3. UNIX for Dummies Questions & Answers

How to do ls -l on results of grep and find?

Hi, Am running the command below to search for files that contains a certain string. grep -il "shutdown" `find . -type f -mtime -1 -print` | grep "^./scripts/active" How do I get it to do a ls -l on the list of files? I tried doing ls -l `grep -il "shutdown" `find . -type f -mtime -1... (5 Replies)
Discussion started by: newbie_01
5 Replies

4. UNIX for Dummies Questions & Answers

sort find results

Hi, I have a problem with a shell script. The script should find all .cpp and .h files and list them. With: for file in `find $src -name '*.h' -o -name '*.cpp' it gives out this: H:\FileList\A\E\F\G\newCppFile.cpp H:\FileList\header01.h H:\FileList\B\nextCppFile.cpp ... (4 Replies)
Discussion started by: shellBeginner75
4 Replies

5. Shell Programming and Scripting

How to check files and move the results to differents files?

Hi, I am a newbie to shell scripting. here is my objective: 1)The shell program should take 2 parameters - ie-> DestinationFolder, WebFolder 2)Destination folder contains few files that has to has be verified and deleted. 3)WebFolder is a folder containing a list of master files 4)It... (1 Reply)
Discussion started by: sandhyagupta
1 Replies

6. UNIX for Dummies Questions & Answers

tar, zip multiple separate directories and move the results to another volume

TIA, I'm using FreeBSD 6 I have a series of Directories (A,B,C,...Z). Each directory has files and other directories within it. I want to compress the contents of each top directory into a single file so that I get an archive of each directory (for example, A.gzip) AND and want to move... (5 Replies)
Discussion started by: jccbin
5 Replies

7. Shell Programming and Scripting

FIND returns different results in script

When I execute this line at the command prompt I get a different answer than when I run it in a script? Any ideas on how to resolve? I'm trying to find all files/dir in a directory except files that start with the word file. Once I get this command to work, I will add the "delete" part to the... (6 Replies)
Discussion started by: blt123
6 Replies

8. Shell Programming and Scripting

edit results of a find command

Hi Purpose is to have a utility command to find and edit files . I tried a function like the following in my .profile file function vifind(){ find . -name $1 -print -exec vi {} \; } Is this correct? is there a better way to do it? I see this behaving a bit strange in case of AIX, and... (6 Replies)
Discussion started by: grep_whoami
6 Replies

9. UNIX for Dummies Questions & Answers

How to sort find results

Hi-- Ok. I have now found that: find -x -ls will do what I need as far as finding all files on a particular volume. Now I need to sort the results by the file's modification date/time. Is there a way to do that? Also, I notice that for many files, whereas the man for find says ls is... (8 Replies)
Discussion started by: groundlevel
8 Replies

10. UNIX for Dummies Questions & Answers

find results

Hi, how can I get only useful results from find / -size 10000000 without the "Permissions denied" files ? tks C (5 Replies)
Discussion started by: Carmen123
5 Replies
Login or Register to Ask a Question