So to get all the files ending it .c use *.c. A single character is represented with a ?. So all the files starting with any sign followed bye 44.f can be fetched by: ?44.f. Especially in ksh there are quantifiers for whole patterns:?(pattern) matches zero or one times the pattern. *(pattern) matches any time the pattern.