Finding files with linux
Use the find
command:
1
find . -name "about"
However, the above command won’t match “about.md”. To match about* we need to use a wildcard
1
find . -name "about*"
This post is licensed under CC BY 4.0 by the author.
Use the find
command:
1
find . -name "about"
However, the above command won’t match “about.md”. To match about* we need to use a wildcard
1
find . -name "about*"