Write the command you would use to locate all of the html fi
Write the command you would use to locate all of the “.html” files in your current directory without using ls? Your command should be case-insensitive (it should ignore case).
Solution
Answer:
This command searches through /usr/local directory for all the files that ends with \".html\" , when found are changed to mod644 :
\" find /usr/local -name \"*.html\" -type f -exec chmod 644 {} \\; \"
