regarding the unix crash course / Variables and For loops / "grep -w -A 1 ">9" genes.faa"
grep with -w doesn't detect only whitespace but any "non-word constituent character" so anything that isn't alphanumerical or an underscore. This also means adding > to the string is redundant.
(I found it out by chance and then checked the man page. Possibly not universal(?))
regarding the unix crash course / Variables and For loops / "grep -w -A 1 ">9" genes.faa"
grep with -w doesn't detect only whitespace but any "non-word constituent character" so anything that isn't alphanumerical or an underscore. This also means adding > to the string is redundant.
(I found it out by chance and then checked the man page. Possibly not universal(?))