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