วิธีการเพิ่มนามสกุลไฟล์ทั้งหมดผ่านทางเทอร์มินัล


14

ฉันต้องการเพิ่มนามสกุล. zip ในไฟล์ทั้งหมด ฉันลองสิ่งนี้ แต่มันไม่ทำงาน:

ls | awk '{print $1 " " $1".zip"}' | xargs mv -f

คำตอบ:


5

ค้นหา - ลิงค์ไม่กี่:

  1. เพิ่มนามสกุลไฟล์ซ้ำทุกไฟล์ - Stack Overflow
  2. เพิ่มนามสกุลไฟล์ลงในไฟล์ที่มี bash - Stack Overflow

ผู้ชายเปลี่ยนชื่อ:

NAME
       rename - renames multiple files

SYNOPSIS
       rename [ -v ] [ -n ] [ -f ] perlexpr [ files ]

DESCRIPTION
       "rename" renames the filenames supplied according to the rule specified as 
       the first argument.  The perlexpr argument is a Perl expression which is 
       expected to modify the $_ string in Perl for at least some of the filenames 
       specified. If a given filename is not modified by the expression, it will not 
       be renamed.  If no filenames are given on the command line, filenames will be 
       read via standard input...

man wiki: http://en.wikipedia.org/wiki/Man_page


1
ขอบคุณที่ฉันสามารถทำสิ่งนี้ได้ - ls | xargs -I% mv%% .zip
UAdapter



4

วิธีง่ายๆในการทำเช่นนั้นคือ:

หากคุณต้องการที่จะรักษาส่วนขยายปัจจุบัน:

for i in *; do mv $i ${i}.zip; done     

หากคุณต้องการแทนที่ส่วนขยายปัจจุบัน:

for i in *; do mv $i ${i%.*}.zip; done

0

สิ่งนี้ควรทำเคล็ดลับ:

mmv "./*" "./#1.zip"

(แม้ว่าฉันจะไม่รู้ว่าทำไมคุณถึงต้องการทำเช่นนี้ ... )

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