แปลง line-endings สำหรับแผนผังไดเร็กทอรีทั้งหมด (Git)


162

สถานการณ์ต่อไปนี้:

ฉันกำลังทำงานบน Mac ที่ใช้ OS X และเพิ่งเข้าร่วมโปรเจ็กต์ซึ่งสมาชิกทั้งหมดใช้ Windows หนึ่งในภารกิจแรกของฉันคือตั้งค่า codebase ในที่เก็บ Git ดังนั้นฉันจึงดึงแผนผังไดเรกทอรีจาก FTP และลองตรวจสอบลงใน Git repo ที่ฉันเตรียมไว้ในเครื่อง เมื่อพยายามที่จะทำสิ่งนี้ทั้งหมดที่ฉันได้รับคือ

fatal: CRLF would be replaced by LF in blog/license.txt.

เนื่องจากสิ่งนี้มีผลต่อไฟล์ทั้งหมดที่อยู่ใต้โฟลเดอร์ "บล็อก" ฉันกำลังมองหาวิธีที่จะแปลงไฟล์ทั้งหมดในทรีให้เป็น Unix line-endings มีเครื่องมือที่ทำนอกกรอบหรือฉันจะเขียนสคริปต์บางอย่างด้วยตัวเองหรือไม่?

สำหรับการอ้างอิงการกำหนดค่า Git ของฉันเกี่ยวกับการสิ้นสุดบรรทัด:

core.safecrlf=true
core.autocrlf=input

คำตอบ:


268

dos2unixทำเพื่อคุณ กระบวนการตรงไปตรงมาค่อนข้างเป็นธรรม
dos2unix filename

ต้องขอบคุณ toolbear ต่อไปนี้เป็นหนึ่งในสายการบินที่แทนที่ส่วนท้ายของบรรทัดแบบวนซ้ำและจัดการกับช่องว่างคำพูดและเชลล์ meta chars อย่างเหมาะสม

find . -type f -exec dos2unix {} \;

หากคุณใช้ไฟล์ไบนารี dos2unix 6.0 จะถูกละเว้น


8
find blog -type f | xargs dos2unixควรจะเร็วกว่า คุณไม่จำเป็นต้องใช้-name *.*ทั้งสองไฟล์ยกเว้นว่าคุณต้องการเฉพาะไฟล์ที่มีเครื่องหมายจุดในชื่อ นั่นคือ windows glob ไม่ใช่ * ระวัง
ไร้ประโยชน์

15
การไพพ์findไปยังxargsจะล้มเหลวหากfindตรงกับไฟล์ใด ๆ ที่มีช่องว่างอัญประกาศหรืออักขระเมตาเชลล์อื่น ๆ ในพา ธ อย่างน้อยก็ใช้find blog -type f -print0 | xargs -0 dos2unixเพื่อจัดการกับกรณีของช่องว่าง คุณต้องใช้find's -execแทนการ piping เพื่อหลีกเลี่ยงราคา, ฯลฯ . dos2unixหน้าคนไม่ได้ระบุพฤติกรรมของมันคืออะไรถ้าคุณเรียกมันบนไฟล์ไบนารี ถ้ามันแปลง CRLF ในไฟล์ไบนารีมันจะทำให้เสียหาย ดูคำตอบของฉันสำหรับทางเลือกที่ปลอดภัยกว่าแม้ว่าจะเป็นทางเลือกที่ยาวกว่า
แถบเครื่องมือ

1
@lukmdo ซึ่งไม่ใช่รุ่นที่ติดตั้งบน CentOS 6.4 ..... ซึ่งจะอุดตันพวกเขา .... ฉันต้อง d / l จากที่นี่rpmfind.net/linux/rpm2html/search.php?query=dos2unix
Kerridge0

ภาคผนวก: dos2unix CLI ติดตั้งได้ง่ายที่สุดผ่าน Homebrew (และไม่ใช่ npm)
2540625

2
วิธีการอย่างใดอย่างหนึ่งจะไม่สนใจไดเรกทอรีที่ใช้วิธีการนี้ถ้าเป็นไปได้?
datatype_void

50

สมมติว่าคุณมี GNU grepและperlสิ่งนี้จะแปลง CRLF เป็น LF ซ้ำในไฟล์ที่ไม่ใช่ไบนารีภายใต้ไดเรกทอรีปัจจุบัน:

find . -type f -exec grep -qIP '\r\n' {} ';' -exec perl -pi -e 's/\r\n/\n/g' {} '+'

มันทำงานอย่างไร

ค้นหาแบบเรียกซ้ำภายใต้ไดเรกทอรีปัจจุบัน เปลี่ยน.เป็นblogหรือwhatevไดเร็กทอรีย่อยเพื่อ จำกัด การแทนที่:

find .

จับคู่ไฟล์ปกติเท่านั้น:

  -type f

ทดสอบว่าไฟล์มี CRLF หรือไม่ ไม่รวมไฟล์ไบนารี รันgrepคำสั่งสำหรับไฟล์ปกติทุกไฟล์ นั่นคือราคาของการยกเว้นไบนารี หากคุณมีเก่าgrepคุณสามารถลองสร้างการทดสอบโดยใช้fileคำสั่ง:

  -exec grep -qIP '\r\n' {} ';'

แทนที่ CRLF ด้วย LF ส่วน'+'ที่สอง-execบอกfindให้สะสมไฟล์ที่ตรงกันและส่งไปยังการเรียกใช้คำสั่งหนึ่งคำสั่ง - เช่น piping xargsแต่ไม่มีปัญหาหากพา ธ ไฟล์มีช่องว่างอัญประกาศหรืออักขระเมตาของเชลล์อื่น ๆ iใน-piบอก Perl เพื่อแก้ไขไฟล์ในสถานที่ คุณสามารถใช้sedหรือawkที่นี่กับงานบางอย่างและคุณอาจเปลี่ยน '+' เป็น ';' และเรียกใช้กระบวนการแยกต่างหากสำหรับการแข่งขันแต่ละครั้ง:

  -exec perl -pi -e 's/\r\n/\n/g' {} '+'

6
ในกรณีที่มันช่วยทุกคน: grep -qIP '\r\n'อย่าจับคู่สิ่งใดในระบบ CentOS ของฉัน เปลี่ยนเป็นใช้grep -qIP '\r$'งานได้
Steve Onorato

ไม่ชอบถามความคิดเห็น แต่มีวิธียกเว้นโฟลเดอร์เช่นนี้node_modulesหรือไม่?
datatype_void

1
@datatype_void ลองดูที่stackoverflow.com/questions/4210042/…สำหรับวิธีการแก้ไขfindส่วนของคำสั่งเพื่อแยกไดเรกทอรี พวกเขาแนะนำให้ใช้-pathแต่คุณสามารถใช้-regexหรือ-iregexเช่น-not -regex '.*/node_modules/.*'ซึ่งจะแยก a node_modulesที่ระดับความลึกใด ๆ
แถบเครื่องมือ

ขออภัยถ้าฉันออกมาเป็นregexหรือbashnoob แต่สิ่งที่เกี่ยวกับการยกเว้นหลายพูดnode_moduleและdistตัวอย่าง?
datatype_void

จำเป็นต้องใช้ grep GNU สำหรับ-Pแฟล็ก OS X เปลี่ยนจาก GNU grep เป็น grep BSD ทางเลือกบางอย่างสำหรับ OS X: stackoverflow.com/questions/16658333/…
toolbear

29

ที่นี่เป็นตัวเลือกที่ดีกว่า: สวิสไฟล์มีด มันทำงานซ้ำในไดเรกทอรีย่อยและจัดการช่องว่างและอักขระพิเศษอย่างเหมาะสม

สิ่งที่คุณต้องทำคือ:

sfk remcr -dir your_project_directory

โบนัส: sfkยังทำการแปลงอื่น ๆ อีกมากมาย ดูด้านล่างสำหรับรายการทั้งหมด:

SFK - The Swiss File Knife File Tree Processor.
Release 1.6.7 Base Revision 2 of May  3 2013.
StahlWorks Technologies, http://stahlworks.com/
Distributed for free under the BSD License, without any warranty.

type "sfk commandname" for help on any of the following.
some commands require to add "-help" for the help text.

   file system
      sfk list       - list directory tree contents.
                       list latest, oldest or biggest files.
                       list directory differences.
                       list zip jar tar gz bz2 contents.
      sfk filefind   - find files by filename
      sfk treesize   - show directory size statistics
      sfk copy       - copy directory trees additively
      sfk sync       - mirror tree content with deletion
      sfk partcopy   - copy part from a file into another one
      sfk mkdir      - create directory tree
      sfk delete     - delete files and folders
      sfk deltree    - delete whole directory tree
      sfk deblank    - remove blanks in filenames
      sfk space [-h] - tell total and free size of volume
      sfk filetime   - tell times of a file
      sfk touch      - change times of a file

   conversion
      sfk lf-to-crlf - convert from LF to CRLF line endings
      sfk crlf-to-lf - convert from CRLF to LF line endings
      sfk detab      - convert TAB characters to spaces
      sfk entab      - convert groups of spaces to TAB chars
      sfk scantab    - list files containing TAB characters
      sfk split      - split large files into smaller ones
      sfk join       - join small files into a large one
      sfk hexdump    - create hexdump from a binary file
      sfk hextobin   - convert hex data to binary
      sfk hex        - convert decimal number(s) to hex
      sfk dec        - convert hex number(s) to decimal
      sfk chars      - print chars for a list of codes
      sfk bin-to-src - convert binary to source code

   text processing
      sfk filter     - search, filter and replace text data
      sfk addhead    - insert string at start of text lines
      sfk addtail    - append string at end of text lines
      sfk patch      - change text files through a script
      sfk snapto     - join many text files into one file
      sfk joinlines  - join text lines split by email reformatting
      sfk inst       - instrument c++ sourcecode with tracing calls
      sfk replace    - replace words in binary and text files
      sfk hexfind    - find words in binary files, showing hexdump
      sfk run        - run command on all files of a folder
      sfk runloop    - run a command n times in a loop
      sfk printloop  - print some text many times
      sfk strings    - extract strings from a binary file
      sfk sort       - sort text lines produced by another command
      sfk count      - count text lines, filter identical lines
      sfk head       - print first lines of a file
      sfk tail       - print last lines of a file
      sfk linelen    - tell length of string(s)

   search and compare
      sfk find       - find words in binary files, showing text
      sfk md5gento   - create list of md5 checksums over files
      sfk md5check   - verify list of md5 checksums over files
      sfk md5        - calc md5 over a file, compare two files
      sfk pathfind   - search PATH for location of a command
      sfk reflist    - list fuzzy references between files
      sfk deplist    - list fuzzy dependencies between files
      sfk dupfind    - find duplicate files by content

   networking
      sfk httpserv   - run an instant HTTP server.
                       type "sfk httpserv -help" for help.
      sfk ftpserv    - run an instant FTP server
                       type "sfk ftpserv -help" for help.
      sfk ftp        - instant anonymous FTP client
      sfk wget       - download HTTP file from the web
      sfk webrequest - send HTTP request to a server
      sfk tcpdump    - print TCP conversation between programs
      sfk udpdump    - print incoming UDP requests
      sfk udpsend    - send UDP requests
      sfk ip         - tell own machine's IP address(es).
                       type "sfk ip -help" for help.
      sfk netlog     - send text outputs to network,
                       and/or file, and/or terminal

   scripting
      sfk script     - run many sfk commands in a script file
      sfk echo       - print (coloured) text to terminal
      sfk color      - change text color of terminal
      sfk alias      - create command from other commands
      sfk mkcd       - create command to reenter directory
      sfk sleep      - delay execution for milliseconds
      sfk pause      - wait for user input
      sfk label      - define starting point for a script
      sfk tee        - split command output in two streams
      sfk tofile     - save command output to a file
      sfk toterm     - flush command output to terminal
      sfk loop       - repeat execution of a command chain
      sfk cd         - change directory within a script
      sfk getcwd     - print the current working directory
      sfk require    - compare version text

   development
      sfk bin-to-src - convert binary data to source code
      sfk make-random-file - create file with random data
      sfk fuzz       - change file at random, for testing
      sfk sample     - print example code for programming
      sfk inst       - instrument c++ with tracing calls

   diverse
      sfk media      - cut video and binary files
      sfk view       - show results in a GUI tool
      sfk toclip     - copy command output to clipboard
      sfk fromclip   - read text from clipboard
      sfk list       - show directory tree contents
      sfk env        - search environment variables
      sfk version    - show version of a binary file
      sfk ascii      - list ISO 8859-1 ASCII characters
      sfk ascii -dos - list OEM codepage 850 characters
      sfk license    - print the SFK license text

   help by subject
      sfk help select   - how dirs and files are selected in sfk
      sfk help options  - general options reference
      sfk help patterns - wildcards and text patterns within sfk
      sfk help chain    - how to combine (chain) multiple commands
      sfk help shell    - how to optimize the windows command prompt
      sfk help unicode  - about unicode file reading support
      sfk help colors   - how to change result colors
      sfk help xe       - for infos on sfk extended edition.

   All tree walking commands support file selection this way:

   1. short format with ONE directory tree and MANY file name patterns:
      src1dir .cpp .hpp .xml bigbar !footmp
   2. short format with a list of explicite file names:
      letter1.txt revenues9.xls report3\turnover5.ppt
   3. long format with MANY dir trees and file masks PER dir tree:
      -dir src1 src2 !src\save -file foosys .cpp -dir bin5 -file .exe

   For detailed help on file selection, type "sfk help select".

   * and ? wildcards are supported within filenames. "foo" is interpreted
   as "*foo*", so you can leave out * completely to search a part of a name.
   For name start comparison, say "\foo" (finds foo.txt but not anyfoo.txt).

   When you supply a directory name, by default this means "take all files".

      sfk list mydir                lists ALL  files of mydir, no * needed.
      sfk list mydir .cpp .hpp      lists SOME files of mydir, by extension.
      sfk list mydir !.cfg          lists all  files of mydir  EXCEPT .cfg

   general options:
      -tracesel tells in detail which files and/or directories are included
                or excluded, and why (due to which user-supplied mask).
      -nosub    do not process files within subdirectories.
      -nocol    before any command switches off color output.
      -quiet    or -nohead shows less output on some commands.
      -hidden   includes hidden and system files and dirs.
      For detailed help on all options, type "sfk help options".

   beware of Shell Command Characters.
      command parameters containing characters < > | ! & must be sur-
      rounded by quotes "". type "sfk filter" for details and examples.

   type "sfk ask word1 word2 ..."   to search ALL help text for words.
   type "sfk dumphelp"              to print  ALL help text.

แก้ไข: คำเตือน: ต้องระวังเมื่อทำงานนี้ในโฟลเดอร์ที่มีไฟล์ไบนารีเป็นมันได้อย่างมีประสิทธิภาพจะทำลายไฟล์ของคุณโดยเฉพาะอย่างยิ่งไดเรกทอรี .git ถ้าเป็นกรณีของคุณนี้ไม่ได้ทำงาน SFK ในโฟลเดอร์ทั้งหมด แต่เลือกนามสกุลไฟล์ที่ระบุแทน (* .rb * .py ฯลฯ ) ตัวอย่าง:sfk remcr -dir chef -file .rb -file .json -file .erb -file .md


ใช้งานได้ดีกับ OSX Mavericks ไม่จำเป็นต้องติดตั้งอะไรเพียงแค่เรียกใช้สคริปต์จาก dmg ที่เมาท์แล้วเทอร์มินัลของคุณจะปรากฏขึ้นพร้อมใช้งาน
Nate Cook

@Gui Ambros คุณไม่ต้องกังวลกับไฟล์ที่อยู่ในโฟลเดอร์. git sfk ไม่อัพเดทไฟล์ภายในโฟลเดอร์ที่ซ่อนอยู่ตามค่าเริ่มต้น
bittusarkar

1
@bittusarkar: ในเวลาที่คำตอบของฉันsfkประมวลผลโฟลเดอร์. git ทั้งหมดของฉันอย่างมีประสิทธิภาพและทำลายไบนารีจำนวนมาก (ด้วยเหตุนี้การแก้ไขของฉัน; จำไม่ได้ว่าเป็น Linux หรือ Mac) พวกเขาอาจเปลี่ยนพฤติกรรมเริ่มต้นในรุ่นที่ใหม่กว่า แต่ฉันยังคงแนะนำให้ระบุนามสกุลเพื่อความปลอดภัย
Gui Ambros

1
มันใช้งานได้ดีสำหรับฉันหลังจากใช้เวลานานเกินไปในการพยายามทำให้ repos ของฉันกลับสู่สภาวะปกติโดยใช้คำสั่ง git ที่แนะนำซึ่งไม่ได้แก้ไขไฟล์ที่เกี่ยวข้องทั้งหมด
angularsen

1
ขอบคุณ! เพียงแค่ใช้สิ่งนี้เพื่อแปลงไฟล์จำนวนมากอย่างรวดเร็วและไม่เจ็บปวดและตอนนี้ฉันสามารถเพิ่มไฟล์เหล่านี้ไปยังพื้นที่จัดแสดงใน Git บน OSX 10.9.5 และไม่แน่ใจว่าไฟล์ถูกสร้างขึ้นที่ใด
ryanwc

16
find . -not \( -name .svn -prune -o -name .git -prune \) -type f -exec perl -pi -e 's/\r\n|\n|\r/\n/g' {} \;

มันปลอดภัยกว่าเพราะหลีกเลี่ยงการทำลาย repo คอมไพล์ของคุณ เพิ่มหรือแทนที่. git, .svn ด้วย. bzr, .hg หรืออะไรก็ตามที่ควบคุมการใช้งานของคุณไปยังรายการที่ไม่ใช่


3
นี่คือคำตอบที่ดีที่สุดหากคุณไม่จำเป็นต้องติดตั้งอะไรเช่น dos2unix อนุญาตให้ยกเว้นประเภทไฟล์และหลีกเลี่ยงการทำลายไฟล์ซอร์สโค้ด
Raghavan

10

ใน OS X สิ่งนี้ใช้ได้กับฉัน:

find ./ -type f -exec perl -pi -e 's/\r\n|\n|\r/\n/g' {} \;

คำเตือน: โปรดสำรองข้อมูลไดเรกทอรีของคุณก่อนดำเนินการคำสั่งนี้


5
แค่ต้องการที่จะทราบว่านี่คือที่เก็บ git ของฉันเสียหาย ฉันลองอีกครั้งโดยย้ายโฟลเดอร์. git ออกก่อนที่จะทำงานและย้ายกลับมาใหม่หลังจากนั้นด้วยความสำเร็จที่ดีขึ้น
garie

1
ฉันจะทราบด้วยว่านี่ไม่ได้ยกเว้นไฟล์ไบนารีดังนั้นมันจะทำให้ jpgs ของคุณเสียหาย
Niek

0

นี่คือทางออกถ้าใช้ sed:

find . -type f -exec sed -i 's/\r$//' {} \;

-i ย่อมาจากในสถานที่ถ้าคุณต้องการสร้างการสำรองข้อมูลเช่นกันใช้ -i.bak

's/\r$//'จะแทนที่การรับคืนทั้งหมด ( \r) ที่ส่วนท้ายของแต่ละบรรทัด

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