linux find command multiple extensions code example
Example 1: find more than one extension file in linux
find . -name "*.jpg"
Example 2: find more than one extension file in linux
find . -type f -name "*.txt" -u -name "*.txt"
find . -name "*.jpg"
find . -type f -name "*.txt" -u -name "*.txt"