copy all files matching the request and change the extension at the same time


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers copy all files matching the request and change the extension at the same time
# 8  
Old 12-23-2011
I put it in a file called rename001:
look:
Code:
$ ls *.ext1   
ex001.ext1	ex002.ext1	ex003.ext1	ex004.ext1
$ ./rename001 ext1 ext2
FILE:  ex001.ext1  NEWFILE:   ex001
FILE:  ex002.ext1  NEWFILE:   ex002
FILE:  ex003.ext1  NEWFILE:   ex003
FILE:  ex004.ext1  NEWFILE:   ex004
$ r ls
ls *.ext1
ls: *.ext1: No such file or directory
$ ls *.ext2
ex001.ext2	ex002.ext2	ex003.ext2	ex004.ext2
$

# 9  
Old 12-23-2011
There was typos in the script I gave you : the dollar sign were missing at first on FILE and NEWFILE unde the "echo" line...
# 10  
Old 12-23-2011
Sorry I thought move files...
replace mv by cp
# 11  
Old 12-23-2011
edit* I've solved the second problem now Smilie
P.S. I can't send PMs, because I don't have 10 forum posts yet, so I'll answer here-nevermind, and thank's a lot Smilie

Last edited by vacuity93; 12-23-2011 at 07:48 PM..
# 12  
Old 12-23-2011
Code:
#!/bin/ksh
ls *.$1|while read FILE
do
NEWFILE=$(echo $FILE|cut -d"." -f1)
echo $FILE": " $FILE " "$NEWFILE: " " $NEWFILE.$2
cp $FILE $NEWFILE.$2
sleep 1
done

# 13  
Old 12-23-2011
We have some time shift problems?
When I sent my las post i waited a complete refresh of my forum tab before sending the post...
# 14  
Old 12-23-2011
I had a wrong time zone in the settings, but now I've changed it

Last edited by vacuity93; 12-23-2011 at 07:44 PM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash to copy subfolder and files to matching directory

The bash executes but returns no results and the set -xv showed while the $run variable in blue, was extracted correctly, the $match value in green, was not, rather both values in home/cmccabe/Desktop/f1 were extracted not just the matching. There will always be an exact match from the $run to... (7 Replies)
Discussion started by: cmccabe
7 Replies

2. Shell Programming and Scripting

Copy files based on specific word in a file name & its extension and putting it in required location

Hello All, Since i'm relatively new in shell script need your guidance. I'm copying files manually based on a specific word in a file name and its extension and then moving it into some destination folder. so if filename contains hyr word and it has .md and .db extension; it will move to TUM/HYR... (13 Replies)
Discussion started by: prajaktaraut
13 Replies

3. Shell Programming and Scripting

Copying multiple files and appending time stamp before file extension

Hi, I have multiple files that read: Asa.txt Bad.txt Gnu.txt And I want to rename them using awk to Asa_ddmmyytt.txt and so on ... If there is a single command or more efficient executable please share! Thanks! (4 Replies)
Discussion started by: Jesshelle David
4 Replies

4. UNIX for Dummies Questions & Answers

Display the .csv extension files based on .done extension fine

Hi All, I want to fetch the files based on .done file and display the .csv files and Wil take .csv files for processing. 1.I need to display the .done files from the directory. 2.next i need to search for the .Csv files based on .done file.then move .csv files for the one directory ... (2 Replies)
Discussion started by: girija.g6
2 Replies

5. Shell Programming and Scripting

Copy files matching multiple conditions

Hello How do i copy files matching multiple conditions. Requirement is to search files starting with name abc* and def* and created on a particular date or date range given by the user and copy it to the destination folder. i tried with different commands. below one will give the list ,... (5 Replies)
Discussion started by: NarayanaPrakash
5 Replies

6. Shell Programming and Scripting

Copy files with extension .sh

Hi all... I am trying to copy all my shell script to some directory using following command, I want to simplify it by not using awk..please some one help me.... find -name "*.sh" | awk -F"/" '{a=$NF;gsub(".sh",x,a);cmd="cp"" " $0" ""/home/akshay/MY_ALL/"a"_"++i".sh";system(cmd)}' (3 Replies)
Discussion started by: Akshay Hegde
3 Replies

7. UNIX for Dummies Questions & Answers

Copy files with same name but different extension from 2 different directory

Hi all, i have 2 directory of files, the first directory(ext1directory) contain files of extension .ext1 and the second directory(allextdirectory) contains files of multiple extensions (.ext1,.ext2,.ext3,..) so i want to copy the files from directory 2(allextdirectory) that have the same name... (8 Replies)
Discussion started by: shelladdict
8 Replies

8. UNIX for Dummies Questions & Answers

File access time does not change on some files

Hey All, I want to get the access time of files in a directory. I used ls -lu on a directory and picked a file that had the access time of Mar 1 and used cat to get the contents of the file. Then I used the ls -lu again and the access time changed on that file. Perfect !! Now if I cat a... (10 Replies)
Discussion started by: vipulgupta0
10 Replies

9. Shell Programming and Scripting

copy files with new extension in same directory

I've been able to find all the extensionless files named photos using the command: find /usr/local/apache/htdocs -name photos -print0 I need to copy those files to the name photos.php in their same directory. I've found a bunch of xarg examples for moving to other directories but I wasn't... (7 Replies)
Discussion started by: dheian
7 Replies

10. Shell Programming and Scripting

[Help]RegEx, Putty, Copy Files Insensitive Matching, SSH

Alright, basically we're in the whole where we can't tar/gzip a folder since its to big so how do I copy files to a new folder for example I got files from a-Z, i want to copy all files which starts with a A or a into another folder heres file structure ./backups/A ./backups/B... (11 Replies)
Discussion started by: Lamonte
11 Replies
Login or Register to Ask a Question