up vote 38 down vote favorite
19
share [g+] share [fb]

Given a string file path such as "/foo/fizzbuzz.bar" how would I use bash to extract just the "fizzbuzz" portion of said string?

link|improve this question

feedback

9 Answers

up vote 53 down vote accepted

Here's how to do it with the # and % operators in Bash.

$ x="/foo/fizzbuzz.bar"
$ y=${x%.bar}
$ echo ${y##*/}
fizzbuzz

${x%.bar} could also be ${x%.*} to remove everything after a dot or ${x%%.*} to remove everything after the first dot.

Example:

$ x="/foo/fizzbuzz.bar.quux"
$ y=${x%.*}
$ echo $y
/foo/fizzbuzz.bar
$ y=${x%%.*}
$ echo $y
/foo/fizzbuzz
link|improve this answer
I ended up using this one because it was the most flexible and there were a couple other similar things I wanted to do as well that this did nicely. – Lawrence Johnston Oct 5 '08 at 7:37
feedback

look at the basename command:

NAME=`basename /foo/fizzbuzz.bar .bar`
link|improve this answer
1  
Probably the simplest of all the currently offered solutions... although I'd use $(...) instead of backticks. – Michael Johnson Sep 24 '08 at 4:20
1  
Simplest but adds a dependency (not a huge or weird one, I admit). It also needs to know the suffix. – Vinko Vrsalovic Sep 24 '08 at 5:25
And can be used to remove anything from the end, basically it does just a string removal from end. – Smar Aug 25 '11 at 15:43
feedback

Pure bash way:

~$ x="/foo/bar/fizzbuzz.bar.quux.zoom"; 
~$ y=${x/\/*\//}; 
~$ echo ${y/.*/}; 
fizzbuzz

This functionality is explained on man bash under "Parameter Expansion". Non bash ways abound: awk, perl, sed and so on.

EDIT: Works with more than one dot on filenames and doesn't need to know the suffix (extension)

link|improve this answer
feedback

The basename and dirname functions are what you're after:

mystring=/foo/fizzbuzz.bar
echo basename: $(basename $mystring)
echo basename + remove .bar: $(basename $mystring .bar)
echo dirname: $(dirname $mystring)

Has output:

basename: fizzbuzz.bar
basename + remove .bar: fizzbuzz
dirname: /foo
link|improve this answer
feedback

Using basename assumes that you know what the file extension is, doesn't it?

And I believe that the various regular expression suggestions don't cope with a filename containing more than one "."

The following seems to cope with double dots. Oh, and filenames that contain a "/" themselves (just for kicks)

To paraphrase Pascal, "Sorry this script is so long. I didn't have time to make it shorter"


  #!/usr/bin/perl
  $fullname = $ARGV[0];
  ($path,$name) = $fullname =~ /^(.*[^\\]\/)*(.*)$/;
  ($basename,$extension) = $name =~ /^(.*)(\.[^.]*)$/;
  print $basename . "\n";
 
link|improve this answer
feedback
perl -pe 's/\..*$//;s{^.*/}{}'
link|improve this answer
feedback

If you can't use basename as suggested in other posts, you can always use sed. Here is an (ugly) example. It isn't the greatest, but it works by extracting the wanted string and replacing the input with the wanted string.

echo '/foo/fizzbuzz.bar' | sed 's|.*\/\([^\.]*\)\(\..*\)$|\1|g'

Which will get you the output

fizzbuzz

link|improve this answer
feedback

The basename does that, removes the path. It will also remove the suffix if given and if it matches the suffix of the file but you would need to know the suffix to give to the command. Otherwise you can use mv and figure out what the new name should be some other way.

link|improve this answer
feedback

Beware of the suggested perl solution: it removes anything after the first dot.

$ echo some.file.with.dots | perl -pe 's/\..*$//;s{^.*/}{}'
some

If you want to do it with perl, this works:

$ echo some.file.with.dots | perl -pe 's/(.*)\..*$/$1/;s{^.*/}{}'
some.file.with

But if you are using Bash, the solutions with y=${x%.*} (or basename "$x" .ext if you know the extension) are much simpler.

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.