หนึ่งจะรันคำสั่งเฉพาะสำหรับแต่ละไฟล์ที่พบโดยใช้find
คำสั่งได้อย่างไร find
สำหรับวัตถุประสงค์ของคำถามช่วยบอกว่าผมเพียงต้องการที่จะลบแต่ละไฟล์พบโดย
หนึ่งจะรันคำสั่งเฉพาะสำหรับแต่ละไฟล์ที่พบโดยใช้find
คำสั่งได้อย่างไร find
สำหรับวัตถุประสงค์ของคำถามช่วยบอกว่าผมเพียงต้องการที่จะลบแต่ละไฟล์พบโดย
คำตอบ:
แก้ไข:ในขณะที่คำตอบต่อไปนี้อธิบายกรณีการใช้งานทั่วไปฉันควรทราบว่าการลบไฟล์และไดเรกทอรีเป็นกรณีพิเศษ แทนที่จะใช้-execdir rm {} \;
โครงสร้างให้ใช้เพียงแค่ใช้-delete
ใน:
find -iname '*.txt' -delete
วิธีนี้จะจัดการกับกรณีขอบจำนวนมากที่คุณอาจไม่คิดรวมถึงไฟล์คำสั่งและไดเรกทอรีใดที่ต้องลบเพื่อไม่ให้เกิดข้อผิดพลาด สำหรับกรณีการใช้งานอื่น ๆ ...
วิธีที่ดีที่สุดในการจัดการคำสั่งการเรียกใช้ผลลัพธ์ของการค้นหาคือการใช้-exec
ตัวเลือกต่าง ๆของfind
คำสั่ง โดยเฉพาะอย่างยิ่งคุณควรลองใช้-execdir
ทุกครั้งที่ทำได้เนื่องจากมันจะทำงานภายในไดเรกทอรีของไฟล์ที่พบและปลอดภัยกว่า (ในแง่ของการป้องกันข้อผิดพลาดที่โง่เขลาที่กำลังหายนะ) กว่าตัวเลือกอื่น ๆ
-exec
ตัวเลือกจะตามมาด้วยคำสั่งที่คุณต้องการที่จะทำงานกับ{}
แสดงถึงจุดที่ไฟล์นั้นพบได้โดยการหาควรจะรวมและมีการยกเลิกโดย\;
การเรียกใช้คำสั่งครั้งเดียวสำหรับแต่ละไฟล์หรือ+
เพื่อแทนที่{}
ที่มีรายชื่อของการขัดแย้งของการแข่งขันทั้งหมด . โปรดทราบว่าตัวคั่นเครื่องหมายอัฒภาคจะถูกหลีกเลี่ยงเพื่อที่เชลล์จะไม่เข้าใจว่าเป็นตัวคั่นที่นำไปสู่คำสั่งใหม่
ให้บอกว่าคุณกำลังค้นหาไฟล์ข้อความทั้งหมด:
find -iname '*.txt' -execdir rm {} \;
นี่คือบิตที่เกี่ยวข้องจากคู่มือการค้นหา ( man find
):
-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 sec-
tion for examples of the use of the -exec option. The specified
command is run once for each matched file. The command is exe-
cuted in the starting directory. There are unavoidable secu-
rity 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 invoca-
tions 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.
-execdir command ;
-execdir command {} +
Like -exec, but the specified command is run from the subdirec-
tory containing the matched file, which is not normally the
directory in which you started find. This a much more secure
method for invoking commands, as it avoids race conditions dur-
ing resolution of the paths to the matched files. As with the
-exec action, the ‘+’ form of -execdir will build a command line
to process more than one matched file, but any given invocation
of command will only list files that exist in the same subdirec-
tory. If you use this option, you must ensure that your $PATH
environment variable does not reference ‘.’; otherwise, an
attacker can run any commands they like by leaving an appropri-
ately-named file in a directory in which you will run -execdir.
The same applies to having entries in $PATH which are empty or
which are not absolute directory names.
อีกทางเลือกหนึ่งคือการส่งออกท่อและแยกมันด้วยคำสั่งที่ตามมา วิธีเดียวที่ปลอดภัยในการทำเช่นนั้นคือการใช้-print0
ตัวเลือกซึ่งบอกfind
ให้ใช้อักขระ null เป็นตัวคั่นผลลัพธ์ คำสั่งที่ได้รับจะต้องมีความสามารถในการรับรู้อินพุตที่คั่นด้วย null ตัวอย่าง:
find /home/phunehehe -iregex '.*\.png$' -print0 | xargs -0 file
โปรดทราบว่า-0
ตัวเลือกบอกxargs
ให้ถือว่าอินพุตเป็นตัวคั่น null
-exec
กับไฟล์มากขึ้นถ้าคุณจบมันด้วยแทน+
;
ดูคำตอบของแม็กเคเล็บ
Find มีคำสั่งลบในตัวหากเป็นสิ่งที่คุณต้องทำ
find . -name "*.txt" -delete
ไฟล์. txt ที่พบจะถูกลบโดยใช้คำสั่งด้านบน
ฉันกำลังค้นหาคำตอบนี้และฉัน stumbled เมื่อหัวข้อนี้ คำตอบให้ฉันและความคิดเกี่ยวกับวิธีที่ฉันสามารถบรรลุมัน สมมติว่าคุณต้องการค้นหาmediainfo
ไฟล์ JPEG ทั้งหมด
สิ่งนี้จะผนวกmediainfo "
เข้ากับตอนต้นและ"
ตอนท้ายของไฟล์ที่ตรงกันทุกไฟล์ (หากต้องการหลีกเลี่ยงอักขระพิเศษให้มากที่สุด) ให้วางสคริปต์และเรียกใช้สคริปต์:
find . -name *.jpg | sed -e 's/^/mediainfo "/g;' | sed -e 's/$/"/g;' > foo.sh && sh foo.sh
ในกรณีที่คุณกังวลว่ามีบางอย่างผิดพลาดคุณสามารถข้ามการเปลี่ยนเส้นทางเอาต์พุตไปที่ไฟล์และเห็นผลลัพธ์ในเทอร์มินัลก่อนเรียกใช้สคริปต์
คุณสามารถทำได้โดยใช้xargs
คำสั่ง xargs
เป็นหลักรันคำสั่งหนึ่งครั้งสำหรับแต่ละคำสั่งของอินพุตมาตรฐาน ดังนั้นหากคุณต้องการลบ.jpg
ไฟล์ทั้งหมดในไดเรกทอรีวิธีที่รวดเร็วในบรรทัดคำสั่งคือ:
$ find ./ -name "*.jpg" | xargs rm
คุณยังสามารถใช้ backtick (เหนือปุ่ม Tab) เพื่อทำสิ่งนี้ (โปรดทราบว่านี่คืออักขระ backquote ไม่ใช่อักขระเครื่องหมายคำพูดเดี่ยว):
$ rm `find ./ -name "*.jpg"`
โปรดทราบว่าเนื่องจากวิธีการxargs
และเชลล์ประมวลผลอินพุตวิธีการ xargs จะทำงานเฉพาะในกรณีที่ไม่มีชื่อไฟล์และชื่อไดเรกทอรีที่เกี่ยวข้องที่มีช่องว่างหรือใด ๆ\"'
; วิธี backquote เท่านั้นทำงานถ้าไม่มีชื่อไฟล์และไดเรกทอรีชื่อที่เกี่ยวข้องกับการมีช่องว่างหรือใด ๆ \[?*
ของ
find
ซึ่ง-exec
โดยทั่วไปแล้วจะเป็นทางออกที่ดีกว่า หากคุณต้องการระบุสิ่งเหล่านี้เป็นทางเลือกอย่างน้อยอธิบายวิธีใช้find -print0 | xargs -0
สำหรับการจัดการการแบ่งชื่อไฟล์ที่ปลอดภัยและอธิบายรายละเอียดเกี่ยวกับการระมัดระวัง backticks