Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
01-14-2013, 07:59 PM
|
#1
|
Member
Registered: Feb 2011
Location: North Central Washington
Distribution: Debian, OpenSUSE, Kali, Ubuntu
Posts: 178
Rep:
|
How can I bulk copy files to a new extension in the same directory?
Ok, I'm at a loss on this one. What I frequently need to do is take a group of files in a directory, copy them so they have a different extension and have the new files remain in the original directory. For example, if I have file1.cfg, file2.cfg and file3.cfg in /dir I want to be able to copy them so I have file1.txt, file2.txt and file3.txt in /dir in addition to file1.cfg, etc... When I'm done I want to have all six files in /dir. This is very simple in Windows:
What would be the equivalent command in Linux?
Thanks,
Joe B
|
|
|
01-14-2013, 09:15 PM
|
#2
|
Moderator
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
|
Code:
for i in *.cfg;
do
cp $i ${i/%.cfg/.txt}
done
See Bash parameter substitution: http://www.tldp.org/LDP/abs/html/par...stitution.html
In this specific case example 10.13 is very helpful.
|
|
|
01-15-2013, 04:54 AM
|
#3
|
Member
Registered: Aug 2008
Distribution: Debian
Posts: 523
|
Don't forget about quoting though (also this can be done without bash extensions):
Code:
for i in *.cfg; do
cp "$i" "${i%.cfg}.txt"
done
|
|
|
01-15-2013, 07:19 AM
|
#4
|
Moderator
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
|
Quote:
Originally Posted by mina86
Don't forget about quoting though (also this can be done without bash extensions):
Code:
for i in *.cfg; do
cp "$i" "${i%.cfg}.txt"
done
|
Of course you can use basename instead of Bash extensions, like we did, but Bash is pretty much a common denominator nowadays, I would think, so why not take advantage of it (and I tested this also on zsh, works there, too).
|
|
|
01-15-2013, 08:24 AM
|
#5
|
Member
Registered: Aug 2008
Distribution: Debian
Posts: 523
|
Quote:
Originally Posted by TobiSGD
Of course you can use basename instead of Bash extensions, like we did, but Bash is pretty much a common denominator nowadays, I would think, so why not take advantage of it (and I tested this also on zsh, works there, too).
|
Sure, that's why this was just a minor point of my post – my main issue was with quoting.
Nonetheless I prefer sticking to POSIX shell (which may be especially useful when writing scripts as programs like dash are reported to be faster than full bash) and “${i%.cfg}.txt” is in no way less convenient than “${i/%.cfg/.txt}”.
By the way, I think it's also worth noting “rename” here. Potential solution to OP problem could also be:
Code:
cp -- source-directory/*.cfg target-directory/
cd target-directory/
rename .cfg .txt *.cfg
# or on systems with perl-based rename:
# rename 's/\.cfg$/.txt/' *.cfg
even though it has it's own limitations.
|
|
1 members found this post helpful.
|
01-15-2013, 08:36 AM
|
#6
|
Moderator
Registered: Mar 2008
Posts: 22,252
|
I have never tried this but it might work. See if you have mmv command.
|
|
|
09-15-2014, 02:54 PM
|
#7
|
Member
Registered: Feb 2011
Location: North Central Washington
Distribution: Debian, OpenSUSE, Kali, Ubuntu
Posts: 178
Original Poster
Rep:
|
Thanks everyone, and sorry about the late "Solved" notification.
Thanks,
Joe B
|
|
|
All times are GMT -5. The time now is 05:50 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|