I know on the file A, has a string that contains dc034 however, i cannot get that with grep command either using the word count or by searching for the string. What am i doing wrong? Suggestions
 grep "dc034" filedirectoryA | wc
    0       0       0
grep -Fv "dc034" filedirectoryA
 
     
     
    