Loading…
findThe find command searches through directories for files matching your criteria.
find . -name "*.txt" — find all .txt files in current directory and subdirectoriesfind /path -type d — find only directoriesfind . -type f -name "config*" — find files starting with "config"A project directory has been set up with several files scattered in subdirectories. Use find to locate all files ending in .css inside the webapp directory.
Loading terminal engine...
This may take a moment on first load