Currently, I got the line as below:
integration@ {Wed Nov 19 14:17:32 2014} branch: thebranch
This is contained in the file, and I am parsing the line. However, I want the value between the brackets {Wed Nov 19 14:17:32 2014}
I have no experience with Sed, and to be honest, I find this a bit cryptic.
So far I have managed to use the following command, however the output is still a whole line.
What am I doing wrong?
sed -e 's/[^/{]*"\([^/}]*\).*/\1/'
source share