24 Mar
2002
24 Mar
'02
20:39
On Sun, 24 Mar 2002 09:17:24 -0500, you wrote:
Ok, that is just a simple use of find find . -name "*.jpg" ;;
Nope, that won't keep the shell from expanding the wildcard. Either use single quotes or a backslash to inhibit wildcard expansion: find <directory_to_start_searching> -name \*.jpg find <directory_to_start_searching> -name '*.jpg' Philipp