I have a filename in a format like:
system-source-yyyymmdd.dat
I'd like to be able to parse out the different bits of the filename using the "-" as a delimiter.
|
|
|
|
|
|
|
You can use the cut command to get at each of the 3 'fields', e.g.:
"-d" specifies the delimiter, "-f" specifies the number of the field you require |
||||
|
|
|
Use the cut command. e.g. echo "system-source-yyyymmdd.dat" | cut -f1 -d'-' will extract the first bit. Change the value of the -f parameter to get the appropriate parts. Here's a guide on the Cut command. |
||
|
|
|
|
Depending on your needs, awk is more flexible than cut. A first teaser:
Problem is that describing awk as 'more flexible' is certainly like calling the iPhone an enhanced cell phone ;-) |
||
|
|
|
|
Fantastic - an answer in 3 minutes - that's quicker than phoning a friend! |
||
|
|
|
|
Another method is to use the shell's internal parsing tools, which avoids the cost of creating child processes: oIFS=$IFS IFS=- file="system-source-yyyymmdd.dat" set $file IFS=$oIFS echo "Source is $2" |
||
|
|
|
|
A nice and elegant (in my mind :-) using only built-ins is to put it into an array
Then, you can find the parts in the array...
Caveat: this will not work if the filename contains "strange" characters such as space, or, heaven forbids, quotes, backquotes... |
||
|
|