Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a directory full of files with one extension (.txt in this case) that I want to automatically convert to another extension (.md).

Is there an easy terminal one liner I can use to convert all of the files in this directory to a different file extension?

Or do I need to write a script with a regex?

share|improve this question

2 Answers

up vote 1 down vote accepted

You could use something like this:

for old in *.txt; do mv $old `basename $old .txt`.md; done

Make a copy first!

share|improve this answer
yep that seems to do it. thanks – ben336 Feb 15 at 2:56
    cd $YOUR_DIR
    ls *.txt > abc
    mkdir target // say i want to move it to another directory target in this case
    while read line
    do 
    file=$(echo $line |awk -F. '{ print $1 }')
    cp $line target/$file.md  // depends if u want  to move(mv) or copy(cp)
    done < abc
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.