bash list all files that contain pattern
# Basic syntax:
ls search_pattern
# Example usage:
# Say you have a directory containing the following files and you only
# want to list .png files
file1.txt
file2.txt
image1.png
image2.png
# Typing:
ls *.png
# Will return:
--> image1.png
image2.png