Ls command linux
1 min readSep 16, 2019
The most common use for the ls command in linux is to list our current position information in our folder, but there are many more options for using the ls command in linux, for example the command ls *.c
On the other hand, the use of the ls * .c command allows you to list all the files of the current position, this thanks to the asterisk * is a more universally known metacharacter, and is used to mean zero or more of any character when searching for a pattern For example: * .c returns a match for any file name ending in .c let’s see it in operation.