grep -i -w -n -H -R -l deluxe *.txt-i” attribute means ignore case.-w” attribute means match only whole words.-n” attribute means display the line number.-H” attribute means display the filename for each match.-R” attribute means recurse sub-directories.-l” attribute means display only the names of files containing matches.