ไวยากรณ์การค้นหา -exec ที่ถูกต้องคืออะไร


10

ฉันต้องการลบไฟล์ที่มีขนาดมากกว่า 2MB ภายในโฟลเดอร์เฉพาะ ดังนั้นฉันจึงวิ่ง:

find . -size +2M

และฉันได้รายการไฟล์สองไฟล์

./a/b/c/file1

./a/f/g/file2

ดังนั้นฉันจึงเรียกใช้:

find . -size +2M -exec rm ;

และฉันได้รับข้อความแสดงข้อผิดพลาด Find: missing argument to -exec

ฉันตรวจสอบไวยากรณ์ใน man page และมันบอกว่า -exec command ;

ดังนั้นฉันลองแทน

find . -size +2M -exec rm {} +

และมันใช้งานได้ ผมเข้าใจว่า {} ให้มันรันคำสั่งชอบแทนrm file1 file2rm file1; rm file2;

เหตุใดคนแรกจึงไม่ทำงาน

ตอบ:

ฉันเดาว่าฉันแค่ต้อง RTFM สองสามครั้งในที่สุดก็เข้าใจสิ่งที่มันกำลังพูด แม้ว่าตัวอย่างแรกจะไม่แสดง {} การจัดฟันจำเป็นต้องมีในทุกกรณี จากนั้นเพิ่ม \; หรือ + ขึ้นอยู่กับวิธีที่ต้องการ อย่าเพิ่งอ่านหัวเรื่อง อ่านคำอธิบายเช่นกัน เข้าใจแล้ว

คำตอบ:


16

คุณสามารถใช้แบบฟอร์มใด ๆ :

find . -size +2M -exec rm {} +

find . -size +2M -exec rm {} \;

อัฒภาคควรจะหลบหนี!


10
-exec rm {} \;

คุณสามารถใช้ .. คนหา

-exec command ;
              Execute command; true if 0 status is returned.  All following arguments to find are taken to be arguments to the  command  until
              an  argument  consisting of `;' is encountered.  The string `{}' is replaced by the current file name being processed everywhere
              it occurs in the arguments to the command, not just in arguments where it is alone, as in some versions of find.  Both of  these
              constructions  might  need  to  be escaped (with a `\') or quoted to protect them from expansion by the shell.  See the EXAMPLES
              section for examples of the use of the -exec option.  The specified command is run once for each matched file.  The  command  is
              executed  in  the  starting directory.   There are unavoidable security problems surrounding use of the -exec action; you should
              use the -execdir option instead.

       -exec command {} +
              This variant of the -exec action runs the specified command on the selected files, but the command line is  built  by  appending
              each  selected file name at the end; the total number of invocations of the command will be much less than the number of matched
              files.  The command line is built in much the same way that xargs builds its command  lines.   Only  one  instance  of  `{}'  is
              allowed within the command.  The command is executed in the starting directory.

1
อาโอเค. ฉันเดาว่าฉันแค่ต้อง RTFM สองสามครั้งในที่สุดก็เข้าใจสิ่งที่มันพูด แม้ว่าตัวอย่างแรกจะไม่แสดง {} การจัดฟันจำเป็นต้องมีในทุกกรณี จากนั้นเพิ่ม \; หรือ + ขึ้นอยู่กับวิธีที่ต้องการ เข้าใจแล้ว
Safado

2

เพื่อประโยชน์ของประสิทธิภาพคุณมักจะใช้ xargs ดีกว่า:

$ find /path/to/files -size +2M -print0 | xargs -0 rm

1
ไม่ได้จริงๆ ในขณะที่รายการแนะนำใน wiki ของ Greg พูดว่า: + (แทน;) ที่ส่วนท้ายของการดำเนินการ -exec บอกให้พบว่าใช้คุณลักษณะ xargs-like ภายในซึ่งทำให้คำสั่ง rm ถูกเรียกใช้เพียงครั้งเดียวสำหรับไฟล์ทุกอัน แทนหนึ่งครั้งต่อไฟล์
adaptr

อ่าน่าสนใจ ฉันใช้ find + xargs มาหลายปีแล้วและฉันไม่เคยรู้เกี่ยวกับตัวดำเนินการ + ขอบคุณสำหรับการชี้ให้เห็น!
EEAA

ฉันสามารถแนะนำวิกิของเกร็กอย่างสุดใจ ผู้ชายคนนี้รู้มากขึ้นเกี่ยวกับทุบตีและชุดเครื่องมือ GNU มากกว่าที่ฉันเคยหวังว่าจะได้เรียนรู้ มันปลอดภัยที่จะบอกว่าฉันเรียนรู้เพิ่มเติมเกี่ยวกับการใช้ bash ตั้งแต่ฉันเริ่มอ่านมันมากกว่าทุกปีก่อนหน้านั้น
adaptr

2
เกร็กคือใครและฉันจะหาวิกิของเขาได้ที่ไหน
Safado

@Safado ฉันคิดว่านี่คือ: mywiki.wooledge.org
Enrico Stahn

0

ฉันจะไม่ใช้ -exec เลยสำหรับสิ่งนี้ ค้นหายังสามารถลบไฟล์เอง:

find . -size +2M -delete

(นี่อาจเป็น GNUism แต่ไม่ทราบว่าคุณจะพบสิ่งนี้ใน non-gnu find หรือไม่)


มีเหตุผลที่อยู่เบื้องหลังสิ่งนี้หรือเป็นเพียงการตั้งค่าส่วนตัว?
Safado

ค้นหาเพียงแค่เรียก unlink (2) และไม่ต้องแยกกระบวนการใหม่เพื่อทำการลบ มันจะมีประสิทธิภาพมากขึ้น มันยังอ่านได้มากขึ้น
สตูว์

0

ตามที่ระบุในเอกสาร --exec ต้องการ {} เป็นตัวยึดตำแหน่งสำหรับผลลัพธ์ของการค้นหา

คำแนะนำที่ชัดเจนสำหรับการใช้เครื่องมือทุบตีและ GNU อยู่ที่นี่

อย่างที่คุณเห็นมันจะแสดงคำสั่งที่สองที่คุณใช้เป็นตัวอย่าง

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.