try the option "--color=auto". You'll see for yourself

Usually grep put the whole line containing a match to the output, but the -o switch tells it to print only the matched parts one by one, each on its own separate line.
By the way, don't put patterns in double quotes. You shell will try to expand it before passing it to grep.
For example, if you have a file named "fsA" in the working directory, "fs*" will be expanded as "fsA", and grep will use this pattern (an exact match) instead of the intended "fs*" (f followed by zero or more 's' characters).