List the files that contains “linux” in their file name. Also ignore the case.
$ ll | grep -i linux
By the way, ll is an alias. Type the following command to see what it really is.
$ type ll
The output shows the following.
ll is aliased to `ls -alF'
Some basic stuff but always nailing the basics is very important in not only software engineering but in anything.