File Filtering Task: Find Files with Common Substring
π Task Description
Your task is to find all files that contain a substring of 30 or more characters that also appears in large_file.txt. You are not allowed to use python code.
π― Task Objectives
- Read the reference file
large_file.txtto understand its content - Examine each file from file_01.txt to file_20.txt
- Find files that contain a substring of 30 or more characters that matches a substring in
large_file.txt - Create a file
answer.txtand write the results to it with the following format:- One line per matching file
- Format:
filename.txt - Do not add any things else other than
filename.txt.