I have a text file, install.history
Wed June 20 23:16:32 CDT 2014, EndPatch, FW_6.0.0, SUCCESS
I would need to print a word starting from EndPatchto the end, which is the FW_6.0.0, SUCCESS
command below, which I print only EndPatch, so I need to make it print the remaining words so that my result is as follows:
EndPatch, FW_6.0.0, SUCCESS
Here is the command I have:
grep -oh "EndPatch[[:alpha:]]*" 'install.history'
source
share