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
# 1  
Old 12-23-2011
copy all files matching the request and change the extension at the same time

Hi everyone

When I'm starting my script I'm giving to it two parameters:

script.sh ext1 ext2

I need to copy all files in a directory fitting ext1, to the same folder, with the same names, but with the changed extension to ext2.
Till now I've just managed to do it for only 1 file, but I need to copy all fitting files.

Please help Smilie
# 2  
Old 12-23-2011
Well if you showed us what you did so far, I might be able to understand why and help you get your script working...

Dont forget to use code tags when submitting your code...
# 3  
Old 12-23-2011
actually what I've done so far is rather pathetic and it's not working Smilie
$1-first parameter, old extension
$2-second parameter, new extension
Code:
cp *.$1 (???).$2

I don't know how to keep the name of copied files and just change the extension

Last edited by vbe; 12-23-2011 at 04:26 PM..
# 4  
Old 12-23-2011
I understand:
I have files with <file>.$1 extension that I would like to rename to <file>.$2 extension, is that so?
# 5  
Old 12-23-2011
yes, exactly!
it should copy all files with any filename, that have the $1 extension, and keep these original filenames, changeing only the extension to $2.
# 6  
Old 12-23-2011
one possibility (far from being the best but I am tired.. (14 hours is a lot...)
Code:
#!/bin/ksh
ls *.$1|while read FILE
do
NEWFILE=$(echo $FILE|cut -d"." -f1)
echo FILE": " $FILE " "NEWFILE: " " $NEWFILE
mv $FILE $NEWFILE.$2
sleep 1
done

Im typing on a portable mac and am totally lost with the keyboard, sorry for being so slooow

I hav eput a sleep and echo line so you see what it does... Just comment them out after...

Last edited by vbe; 12-23-2011 at 05:05 PM.. Reason: added bold $
This User Gave Thanks to vbe For This Post:
# 7  
Old 12-23-2011
thank you! it's working, but it replaces the old files by new ones. how can I keep the old files?
 
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