Was ist die richtige Syntax für:
find . -type f -name \*.\(shtml\|css\)
Das funktioniert, ist aber unelegant:
find . -type f -name \*.shtml > f.txt && find . -type f -name \*.css >> f.txt
Wie mache ich das gleiche, aber mit weniger Tastenanschlägen?