changing file name not the file extention


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting changing file name not the file extention
# 1  
Old 07-19-2008
changing file name not the file extention

Hello experts,
I need to solve the problem stated below:
1.have to search for " operator.java" file and rename it to as OPERATOR.java
2.Also I have to change the following line inside the file:
public class operator----->public class OPERATOR

the only thing that i can think is ,I have to use sed and find but need some hints.

Please give me some ideas.
Thanks.
# 2  
Old 07-19-2008
Code:
find /path/to/files -name operator.java |\
while read file
do
     sed 's/public class operator/public class OPERATOR/' $file > tmpfile
     newfile=$( echo "$file" | sed 's/operator/OPERATOR/' )
     mv tmpfile $newfile
done

start with something like this
# 3  
Old 07-20-2008
Quote:
Originally Posted by jim mcnamara
Code:
find /path/to/files -name operator.java |\
while read file
do
     sed 's/public class operator/public class OPERATOR/' $file > tmpfile
     newfile=$( echo "$file" | sed 's/operator/OPERATOR/' )
     mv tmpfile $newfile
done

start with something like this

Thanks for your great kindness.I am almost done but may have some difficulties later on but I think I will be able to solve that.It was a very tiny part of my project that made me almost mad.Thanks again.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed to remove all lines in file that are not .vcf.gz extention

I am trying to use sed to remove all lines in a file that are nor vcf.gz. The sed below runs but returns all the files with vcf.gz in them, rather then just the ones that end in only that extention. Thank you :). file ... (9 Replies)
Discussion started by: cmccabe
9 Replies

2. Shell Programming and Scripting

Changing file permissions of a file created by another user

Hi, I have used expdp for datapump. The .dmp file is created by the "oracle" user. my requirement is to make a zipped file of this .dmp file. What i am trying to do is change the permissions of this .dmp file from 0640 to 0644 and then do a gzip and zip it. Is there any way i can change... (3 Replies)
Discussion started by: qwertyu
3 Replies

3. Shell Programming and Scripting

How to find complete file names in UNIX if i know only extention of file

Suppose I have a file which contains other file names with some extention . text file containt gdsds sd8ef g/f/temp_temp.sum yyeta t/unix.sum ghfp hrwer h/y/test.text.dat if then.... I want to get the complete file names, like for above file I should get output as temp_temp.sum... (4 Replies)
Discussion started by: panchal
4 Replies

4. Homework & Coursework Questions

Changing a file

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Make “hardlink” readable, writeable, executable by you, but not readable, writeable, executable by anyone else.... (4 Replies)
Discussion started by: lilbo4231
4 Replies

5. Shell Programming and Scripting

changing a file when the inode modified time of the other file changes

i have a requirement where i needed to change variable values in a properties file(first file) whenever there is change to Release details file(second file). My question is do i have to create a daemon process that always checks the modified time/inode change of the second file and then change the... (1 Reply)
Discussion started by: saikiran_1984
1 Replies

6. UNIX for Dummies Questions & Answers

Changing file content based on file header

Hi, I have several text files each containing some data as shown below: File1.txt >DataHeader Data... Data... File2.txt >DataHeader Data... Data... etc. What I want is to change the 'DataHeader' based on the file name. So the output should look like: File1.txt >File1 ... (1 Reply)
Discussion started by: Fahmida
1 Replies

7. Shell Programming and Scripting

changing csv file contents to file of rows

i have a file a.txt contents as 1,2,3,4,......etc...in a single line, i want to write to another file in rows as 1 2 3 4 5 can u help? i do not know the length of a.txt (4 Replies)
Discussion started by: pravfraz
4 Replies

8. UNIX for Dummies Questions & Answers

Changing old file name to new one if the old file name satisfied certain condition

Hi guys, I desperately need your help on my problem:- I got a folder in my directory that has many files in it. Most of the file's name is starting with certain prefix. Eg: ABC, CDE, EFG, etc. I only want to change file name that is starting from certain prefix and the rest I want them to... (1 Reply)
Discussion started by: balzzz
1 Replies

9. UNIX for Dummies Questions & Answers

Changing the File Name

Dear all, I want to change all the File name in a folder from File1.txt to File1YYYYMMDD.txt where YYYYMMDD is the date of the file is renamed. I have used the following scripts:- ******************************************************** #!/bin/ksh A=`date +"%d%m%Y" for in * ... (2 Replies)
Discussion started by: balzzz
2 Replies

10. Shell Programming and Scripting

changing to a different file

Hi, At the moment, I have inserted an actual filename to conduct searches through it etc... Instead, I want the user to choose a filename and then do the searches against this file, instead of already having specified the file in the code. How would I do this? I tried doing the following, but it... (5 Replies)
Discussion started by: kev269
5 Replies
Login or Register to Ask a Question