ฉันรู้ว่าถ้าฉันต้องการ grep สำหรับรูปแบบเฉพาะในไฟล์ที่มีนามสกุลบางอย่างฉันสามารถทำได้: // searches recursively and matches case insensitively in only javascript files // for "res" from the current directory grep -iIr --include=*.js res ./ ฉันพยายามค้นหาวิธีทำสิ่งนี้ผ่าน git grep เช่นกัน (เพื่อใช้ประโยชน์จากความเร็วของ git grep จากดัชนีที่เก็บไว้กับทรี) แต่ก็ไม่มีประโยชน์ ฉันเห็นที่นี่ว่าไม่สามารถยกเว้นไฟล์บางประเภทได้
ฉันต้องการค้นหาไฟล์ * .html ทั้งหมดในโฟลเดอร์ src และโฟลเดอร์ย่อยทั้งหมดโดยใช้ nodejs วิธีที่ดีที่สุดคืออะไร? var folder = '/project1/src'; var extension = 'html'; var cb = function(err, results) { // results is an array of the files with path relative to the folder console.log(results); } // This function is what I am looking for. It has to …