Given a string file path such as "/foo/fizzbuzz.bar", how would I use bash to extract just the "fizzbuzz" portion of said string?
|
Here's how to do it with the # and % operators in Bash.
${x%.bar} could also be ${x%.*} to remove everything after a dot or ${x%%.*} to remove everything after the first dot. Example:
|
|||||||||||
|
|
look at the basename command:
|
|||||||||||
|
|
Pure bash way:
This functionality is explained on man bash under "Parameter Expansion". Non bash ways abound: awk, perl, sed and so on. EDIT: Works with dots in file suffixes and doesn't need to know the suffix (extension), but doesn’t work with dots in the name itself. |
||||
|
|
|
The basename and dirname functions are what you're after:
Has output:
|
|||
|
|
|
Using 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"
|
|||
|
|
|
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.
Which will get you the output
|
|||
|
|
|
Beware of the suggested perl solution: it removes anything after the first dot.
If you want to do it with perl, this works:
But if you are using Bash, the solutions with |
|||
|
|
|
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. |
|||
|
|