Find command in Shell Script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Find command in Shell Script
# 8  
Old 11-24-2010
Yes, as i said, the -i option may depends on your OS : you are on AIX, it seems you do
not have the same option than me for the xargs command.

so you need to do man xargs and see which option is suitable

(maybe it is in uppercape : -I ?)
# 9  
Old 11-24-2010
Quote:
Originally Posted by sweetnsourabh
The code you have provided is throwing following error
Code:
 find . -name "*${var1}*" -i cp {} ./Delete/ \;

That's not the code that ctsgnb posted! The -i is an option to xargs - which mysteriously disappeared - not to find.
# 10  
Old 11-24-2010
Code:
find . -name "*${var1}*" | xargs -I cp {} ./Delete/

I have tried the above code inependently on the shell and it is throwing following error:

xargs: {}: A file or directory in the path name does not exist.
# 11  
Old 11-24-2010
Hi.

-I requires a replacement string ({} by convention), and the replacement string must be used in the command:

Code:
find . -name "*${var1}*" | xargs -I{} cp {} ./Delete/

# 12  
Old 11-24-2010
hi

I have made the correction and this command works fine
But when i keep it inside my shell script it is throwing following error

-----
Code:
20101124
new.sh[5]: ^M:  not found.
new.sh[6]: ^M:  not found.
new.sh[7]: ^M:  not found.
new.sh[8]: ^M:  not found.

-----

the script is

Code:
#!/bin/sh
var1=`date +"%Y%m%d"`
echo $var1
find . -name "*${var1}*" | xargs -I{} cp {} ./Delete/


Last edited by Franklin52; 11-24-2010 at 07:47 AM.. Reason: please use code tags
# 13  
Old 11-24-2010
Do this :
Code:
dos2unix new.sh new.sh

and give another try to run the script
# 14  
Old 11-24-2010
Getting error:

dos2unix: not found.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

Find command doesn't return in shell script.

Hi All, I am using below snippet to search for a string (read from a file 'searchstring.out') in all locations (/) and then iterate over the files found to write the locations and the respective owner to an output file. However, this doesn't work as I believe the find command doesn't exit's... (11 Replies)
Discussion started by: Vipin Batra
11 Replies

2. Shell Programming and Scripting

Unable to pass shell script variable to awk command in same shell script

I have a shell script (.sh) and I want to pass a parameter value to the awk command but I am getting exception, please assist. diff=$1$2.diff id=$2 new=new_$diff echo "My id is $1" echo "I want to sync for user account $id" ##awk command I am using is as below cat $diff | awk... (2 Replies)
Discussion started by: Ashunayak
2 Replies

3. Shell Programming and Scripting

find command in shell script

Hi all, Please i need an explanation for the following statements ref_file=/tmp/cleanfiles export ref_file touch `TZ=WAT+2 date "+%Y%m%d%H%M"` $ref_file find . ! -name . -prune -type f ! -newer $ref_file -exec store_file.sh {} \; (1 Reply)
Discussion started by: anish_1982
1 Replies

4. UNIX for Dummies Questions & Answers

find command in shell script doesn't work

Hello all, Something strange going on with a shell script I'm writing. It's trying to write a list of files that it finds in a given directory to another file. But I also have a skip list so matching files that are in that skip list should be, well uhm, skipped :) Here's the code of my... (2 Replies)
Discussion started by: StijnV
2 Replies

5. Shell Programming and Scripting

find command in shell script

Hi, dirs.conf fine contains below data /a/b/c/dir1|50 /a/b/c/dir2|50 /a/b/c/dir3|50 In a shell script I do as below while read file_rec do dir_name=`echo "${file_rec}" | cut -d "|" -f 1` purge_days=`echo "${file_rec}" | cut -d "|" -f 2` if then... (3 Replies)
Discussion started by: icefish
3 Replies

6. Shell Programming and Scripting

Find command in Korn Shell

Hi, I am trying to execute the below in Ksh (telnet) find ./request.txt -mmin -30 It says find: bad option -mmin What i am trying to do is by using find command i am checking wheather the file request.txt is there for 30 minutes or not Please help (1 Reply)
Discussion started by: chinniforu2003
1 Replies

7. Shell Programming and Scripting

script to find whether shell command is available

I am running shell scripts on windows using Cygwin tool. In my shell scripts, i want to add an error check, that verify whether a certain command is available or not. For example if SED comamnd is not available in Cygwin, then it should exit with error message. How do i write such shell... (2 Replies)
Discussion started by: mmunir
2 Replies

8. UNIX for Dummies Questions & Answers

Shell script 'find' command

I have a script that has the following command: find /home/user -name test.dat The script works as desired when running normally. However, when I run the script preceding it with 'sh', it fails. Is there something I need to account for when preceding the execution of the script with 'sh'? (1 Reply)
Discussion started by: bsavitch
1 Replies

9. UNIX for Advanced & Expert Users

find command from a shell script

Hi experts, I have a shell script (korn shell on aix) where I am giving find command with file options which are read from a configuration file. For some reason I am getting an error find: 0652-017. I have put set -x in the shell script and the command looks okay. If I cut it and paste it in the... (6 Replies)
Discussion started by: kodermanna
6 Replies

10. UNIX for Advanced & Expert Users

Problem with find command in C-shell

when i use the following command find / -name '*.*' -exec grep -il 'text' {} \; I can redirect the errors to /dev/null. This happens only in ksh but not in csh. the 2>/dev/null is not working in csh. Can you some one suggest an alternative for this in csh ? (3 Replies)
Discussion started by: dhanamurthy
3 Replies
Login or Register to Ask a Question