Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wish to remove the file extensions in a folder by getting the extension type as argument.

Below is my code and it is not working as i expected.

if [ $# -ne 1 ]
then
    echo -e "\nUsage: $0 Ext"
    echo -e "\nExt - Refers to the extension you want to remove"
    echo -e "\nExample1: $0 .txt\nExample2: $0 .doc\nExample3: $0 .pdf\n"
exit 1
fi

ext=$1

for i in *$ext
do
    echo $i
    filename=${i%\$ext}
    echo $i
done
share|improve this question

3 Answers

Your code is almost correct, but you need to remove the escape and echo the filename. Code below also shows the use of basename:

for i in *$ext
do
    echo $i
    filename1=${i%$ext}
    filename2=$(basename $i $ext)
    echo $filename1
    echo $filename2
done
share|improve this answer
Hi Thanks for your suggestion. It works fine now. – user1917939 Dec 20 '12 at 7:42

You can replace extension using this script

#!/bin/bash

if [ $# -ne 1 ]
then
    echo -e "\nUsage: $0 Ext"
    echo -e "\nExt - Refers to the extension you want to remove"
    echo -e "\nExample1: $0 .txt\nExample2: $0 .doc\nExample3: $0 .pdf\n"
exit 1
fi

ext=$1

for i in *$ext
do
    echo $i
    new_name=`echo $i | sed 's/.'$ext'//g'`
    echo $new_name
done
share|improve this answer

You can use the below code :

#!/bin/bash

if [ $# -ne 1 ]

then

    echo -e "\nUsage: $0 Ext"
    echo -e "\nExt - Refers to the extension you want to remove"
    echo -e "\nExample1: $0 .txt\nExample2: $0 .doc\nExample3: $0 .pdf\n"

exit 1
fi

ext=$1

for i in *$ext
do    
    echo $i

    new_name=`echo $i |rev|cut -d'.' -f2-|rev

    echo $new_name
done
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.