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

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?

share|improve this question
This question explains this bash technique and several other related ones. – jjclarkson Jun 12 '09 at 20:34

14 Answers

up vote 527 down vote accepted

First, get file without path:

filename=$(basename "$fullfile")
extension="${filename##*.}"
filename="${filename%.*}"
share|improve this answer
27  
Check out gnu.org/software/bash/manual/html_node/… for the full feature set. – D.Shawley Jun 8 '09 at 14:08
13  
Add some quotes to "$fullfile", or you'll risk breaking the filename. – lhunath Jun 8 '09 at 14:34
19  
Heck, you could even write filename="${fullfile##*/}" and avoid calling an extra basename – ephemient Jun 9 '09 at 17:52
11  
Couple years later and still thanks – vol7ron Nov 29 '11 at 20:16
7  
I wish I could upvote each time I fall back on this answer because I can't remember. – Boris Guéry Jan 23 at 9:02
show 6 more comments
~% 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.

share|improve this answer
2  
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
2  
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
1  
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
1  
@Tyler I expanded the answer with a link to the reference. – Juliano Jan 13 '12 at 3:18
2  
This gets more complicated if you are passing in full paths. One of mine had a '.' in a directory in the middle of the path, but none in the file name. Example "a/b.c/d/e/filename" would wind up ".c/d/e/filename" – Walt Sellers Mar 5 '12 at 18:49
show 7 more comments

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  = ""
share|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 May 30 '12 at 21:37

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
share|improve this answer
This is wonderful! – teo Dec 15 '12 at 1:53
1  
That second argument to basename is quite the eye-opener, ty kind sir/madam :) – akaIDIOT Jan 23 at 9:37

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
share|improve this answer
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.

share|improve this answer

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.

share|improve this answer
Just wanted BASEDIRECTORY :) Thanks! – Carlos Ricardo Dec 9 '12 at 20:42

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
share|improve this answer
You shouldn't need the first awk statement in the last example, right? – BHSPitMonkey Apr 5 at 21:13
$ 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.

share|improve this answer

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 =)

share|improve this answer

You can force cut to display all fields and subsequent ones adding - to field number.

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

So if FILE is eth0.pcap.gz, the EXTENSION will be pcap.gz

share|improve this answer

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%.*};
share|improve this answer

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.

share|improve this answer
2  
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 May 30 '12 at 21:44

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:39 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
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.