I want to get the filename (without extension) and the extension separately.

The best solution I found so far is:

NAME=`echo "$FILE" | cut -d'.' -f1`
EXTENSION=`echo "$FILE" | cut -d'.' -f2`

This is wrong because it doesn't work if the file name contains multiple "." characters. If let's say I have a.b.js it will consider a and b.js, instead of a.b and js.

It can be easily done in Python with

file, ext = os.path.splitext(path)

but I'd prefer not to fire a Python interpreter just for this, if possible.

Any better ideas?

link|improve this question

feedback

14 Answers

up vote 207 down vote accepted

First, get file without path:

filename=$(basename $fullfile)
extension=${filename##*.}
filename=${filename%.*}
link|improve this answer
1  
Awesome! Thanks! – ibz Jun 8 '09 at 14:07
11  
Check out gnu.org/software/bash/manual/html_node/… for the full feature set. – D.Shawley Jun 8 '09 at 14:08
11  
Add some quotes to "$fullfile", or you'll risk breaking the filename. – lhunath Jun 8 '09 at 14:34
9  
Heck, you could even write filename="${fullfile##*/}" and avoid calling an extra basename – ephemient Jun 9 '09 at 17:52
3  
Couple years later and still thanks – vol7ron Nov 29 '11 at 20:16
feedback
~% FILE="example.tar.gz"
~% echo "${FILE%%.*}"
example
~% echo "${FILE%.*}"
example.tar
~% echo "${FILE#*.}"
tar.gz
~% echo "${FILE##*.}"
gz

For more details see shell parameter expansion in the bash manual.

link|improve this answer
You (perhaps unintentionally) bring up the excellent question of what to do if the "extension" part of the filename has 2 dots in it, as in .tar.gz... I've never considered that issue, and I suspect it's not solvable without knowing all the possible valid file extensions up front. – rmeador Jun 8 '09 at 14:50
1  
Why not solvable? In my example, it should be considered that the file contains two extensions, not an extension with two dots. You handle both extensions separately. – Juliano Jun 8 '09 at 15:20
It is unsolvable on a lexical basis, you'll need to check the file type. Consider if you had a game called dinosaurs.in.tar and you gzipped it to dinosaurs.in.tar.gz :) – Porges Jun 13 '09 at 9:11
These are really useful but does anyone know how to make them whitespace friendly? For example if the file is called "My Long badly Named File (1).txt" – Diziet Jan 16 '11 at 2:12
1  
@Tyler I expanded the answer with a link to the reference. – Juliano Jan 13 at 3:18
show 7 more comments
feedback

That doesn't seem to work if the file has no extension, or no filename. Here is what I'm using; it only uses builtins and handles more (but not all) pathological filenames.

#!/bin/bash
for fullpath in "$@"
do
    filename="${fullpath##*/}"                      # Strip longest match of */ from start
    dir="${fullpath:0:${#fullpath} - ${#filename}}" # Substring from 0 thru pos of filename
    base="${filename%.[^.]*}"                       # Strip shortest match of . plus at least one non-dot char from end
    ext="${filename:${#base} + 1}"                  # Substring from len of base thru end
    if [[ -z "$base" && -n "$ext" ]]; then          # If we have an extension and no base, it's really the base
        base=".$ext"
        ext=""
    fi

    echo -e "$fullpath:\n\tdir  = \"$dir\"\n\tbase = \"$base\"\n\text  = \"$ext\""
done

And here are some testcases:

$ basename-and-extension.sh / /home/me/ /home/me/file /home/me/file.tar /home/me/file.tar.gz /home/me/.hidden /home/me/.hidden.tar /home/me/.. .
/:
    dir  = "/"
    base = ""
    ext  = ""
/home/me/:
    dir  = "/home/me/"
    base = ""
    ext  = ""
/home/me/file:
    dir  = "/home/me/"
    base = "file"
    ext  = ""
/home/me/file.tar:
    dir  = "/home/me/"
    base = "file"
    ext  = "tar"
/home/me/file.tar.gz:
    dir  = "/home/me/"
    base = "file.tar"
    ext  = "gz"
/home/me/.hidden:
    dir  = "/home/me/"
    base = ".hidden"
    ext  = ""
/home/me/.hidden.tar:
    dir  = "/home/me/"
    base = ".hidden"
    ext  = "tar"
/home/me/..:
    dir  = "/home/me/"
    base = ".."
    ext  = ""
.:
    dir  = ""
    base = "."
    ext  = ""
link|improve this answer
Great work, this was my next question on hidden files – vol7ron Nov 29 '11 at 20:22
Instead of dir="${fullpath:0:${#fullpath} - ${#filename}}" I've often seen dir="${fullpath%$filename}". It's simpler to write. Not sure if there is any real speed difference or gotchas. – dubiousjim 5 hours ago
feedback

Mellen writes in a comment on a blog post:

Using bash there’s also ${file%.*} to get the filename without the extension and ${file##*.} to get the extension alone. I.e.

file=”thisfile.txt”
echo “filename: ${file%.*}”
echo “extension: ${file##*.}”

outputs:

filename: thisfile
extension: txt
link|improve this answer
feedback

Usually you already know the extension, so you might wish to use:

basename filename .extension

for example:

basename /path/to/dir/filename.txt .txt

and we get

filename
link|improve this answer
feedback
pax> echo a.b.js | sed 's/\.[^\.]*$//'
a.b
pax> echo a.b.js | sed 's/^.*\.//'
js

works fine, so you can just use:

pax> FILE=a.b.js
pax> NAME=$(echo "$FILE" | sed 's/\.[^\.]*$//')
pax> EXTENSION=$(echo "$FILE" | sed 's/^.*\.//')
pax> echo $NAME
a.b
pax> echo $EXTENSION
js

The commands, by the way, work as follows.

The NAME sed string substitutes a "." character followed by any number of non-"." characters up to the end of the line, with nothing (i.e., it removes everything from the final "." to the end of the line, inclusive). This is basically a non-greedy substitution using regex trickery.

The EXTENSION sed string substitutes a any number of characters followed by a "." character at the start of the line, with nothing (i.e., it removes everything from the start of the line to the final dot, inclusive). This is a greedy substitution which is the default action.

link|improve this answer
feedback

i thinks that if you just need the name of the file, can try this:

FULLPATH=/usr/share/X11/xorg.conf.d/50-synaptics.conf
# remove all the prefix until "/" character
FILENAME=${FULLPATH##*/}
# remove all the prefix unitl "." character
FILEEXTENSION=${FILENAME##*.}
# remove a suffix, in our cas, the filename, this will return the name of the directory that contains this file
BASEDIRECTORY=${FULLPATH%$FILENAME}

echo "path = $FULLPATH"
echo "file name = $FILENAME"
echo "file extension = $FILEEXTENSION"
echo "base directory = $BASEDIRECTORY"

and that is all =D.

link|improve this answer
feedback

This question explains this bash technique and several other related ones.

link|improve this answer
feedback
$ F = "text file.test.txt"  
$ echo ${F/*./}  
txt  

This caters for multiple dots and spaces in a filename, however if there is no extension it returns the filename itself. Easy to check for though; just test for the filename and extension being the same.

Naturally this method doesn't work for .tar.gz files. However that could be handled in a two step process. If the extension is gz then check again to see if there is also a tar extension.

link|improve this answer
feedback

You can also use a for loop and tr to extract the filename from the path...

for x in `echo $path | tr "/" " "`; do filename=$x; done

The tr replaces all / delimiters in path with spaces so making a list of strings, and the for loop scans through them leaving the last one in the filename variable.

link|improve this answer
If you're going to do it this way, save yourself some forks and instead use: (IFS=/ ; for x in $path; do filename=$x; done). The (...) subshell is needed to localize the assignment to IFS. – dubiousjim 5 hours ago
feedback

Here is a code with awk.. It can be done more simply. But i am not good in awk.

filename$ ls
abc.a.txt  a.b.c.txt  pp-kk.txt
filename$ find . -type f | awk -F/ '{print $2}' | rev | awk -F"." '{$1="";print}' | rev | awk 'gsub(" ",".") ,sub(".$", "")'
abc.a
a.b.c
pp-kk
filename$ find . -type f | awk -F/ '{print $2}' | awk -F"." '{print $NF}'
txt
txt
txt
link|improve this answer
feedback

Ok so if I understand correctly, the problem here is how to get the name and the full extension of a file that has multiple extensions, e.g., stuff.tar.gz. This works for me:

fullfile="stuff.tar.gz"
fileExt=${fullfile#*.}
fileName=${fullfile%*.$fileExt}

This will give you "stuff" as filename and ".tar.gz" as extension. It works for any number of extensions, including 0. Hope this helps for anyone having the same problem =)

link|improve this answer
feedback

Using example file /Users/Jonathan/Scripts/bash/MyScript.sh, this code:

MY_EXT=".${0##*.}"
ME=$(/usr/bin/basename "${0}" "${MY_EXT}")

will result in ${ME} being MyScript and ${MY_EXT} being .sh:


Script:

#!/bin/bash
set -e

MY_EXT=".${0##*.}"
ME=$(/usr/bin/basename "${0}" "${MY_EXT}")

echo "${ME} - ${MY_EXT}"

Some tests:

[ 11:39 Jonathan@MacBookPro ~/Scripts/bash ]$ ./MyScript.sh 
MyScript - .sh

[ 11:49 Jonathan@MacBookPro ~/Scripts/bash ]$ bash MyScript.sh
MyScript - .sh

[ 11:40 Jonathan@MacBookPro ~/Scripts/bash ]$ /Users/Jonathan/Scripts/bash/MyScript.sh
MyScript - .sh

[ 11:40 Jonathan@MacBookPro ~/Scripts/bash ]$ bash /Users/Jonathan/Scripts/bash/MyScript.sh
MyScript - .sh
link|improve this answer
feedback

Simply use ${parameter%word}

In your case:

${FILE%.*}

If you want to test it, all following work, and just remove the extension:

FILE = abc.xyz; echo ${FILE%.*};
FILE = 123.abc.xyz; echo ${FILE%.*};
FILE = abc; echo ${FILE%.*};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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