vote up 8 vote down star
3

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

flag

80% accept rate

8 Answers

vote up 13 vote down check

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|flag
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
vote up 12 vote down

look at the basename command:

NAME=`basename /foo/fizzbuzz.bar .bar`
link|flag
Probably the simplest of all the currently offered solutions... although I'd use $(...) instead of backticks. – Michael Johnson Sep 24 '08 at 4:20
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
vote up 4 vote down

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|flag
Highlighting FAIL! – Vinko Vrsalovic Sep 24 '08 at 3:51
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down
perl -pe 's/\..*$//;s{^.*/}{}'
link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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