Issue
grep -w skillz *
I get this:
J2D [email protected]
Skillz [email protected]
I want this:
Skillz [email protected]
The string will always be separated by spaces*
Solution
Here's what I did to solve this problem:
grep ' Skillz ' *
This returned the desired output:
Skillz [email protected]
Answered By - Nathan Williamson