# Can we filter all links out of the .m3u8 file?

# Like many bash programs, $ grep is a small command line tool that can do one thing: it can filter STDOUT.
# You can use it like this:

cat latino.m3u8 | grep "https"

# In this way, you will get all the lines back in which https occurs.