I need help extracting a line between the "@" character and the space bar "" in Bash.
I am using Python Twitter Tools and the output is as follows:
430438229200740352 2014-02-03 14:30:45 CST <HorizonAwon> @SawBlastt @WereAutomatic 101 for me to join as well
I need to extract two lines:
Sawblastt
WereAutomatic
I also need to set them as a separate variable. I tried communicating with sed and grep, but no successful results. I am really stuck on this. Help is much appreciated. Thank!
source
share