Question

I have a file name, for example: xxdatafile_20110120123030_12342.dat. I want to extract "XXdatafile_" from the file name.

How do I do that using Ksh on Unix?

Was it helpful?

Solution

$ file=xxdatafile_20110120123030_12342.dat
$ echo ${file%%_*}
xxdatafile
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top