संपूर्ण निर्देशिका ट्री (Git) के लिए लाइन-एंडिंग्स बदलें


162

निम्नलिखित स्थिति:

मैं एक मैक पर काम कर रहा हूं जो OS X चला रहा है और हाल ही में एक प्रोजेक्ट में शामिल हुआ है जिसके सदस्य अब तक सभी विंडोज का उपयोग करते हैं। मेरा पहला काम एक गिट रिपॉजिटरी में कोडबेस को स्थापित करना था, इसलिए मैंने एफ़टीपी से डायरेक्टरी ट्री को खींचा और इसे स्थानीय रूप से तैयार किए गए गिट रेपो में जांचने की कोशिश की। जब मैं ऐसा करने की कोशिश कर रहा था, तो मुझे यही मिला

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

चूंकि यह "ब्लॉग" फ़ोल्डर के नीचे की सभी फाइलों को प्रभावित करता है, इसलिए मैं पेड़ की सभी फाइलों को यूनिक्स लाइन-एंडिंग में आसानी से परिवर्तित करने का तरीका ढूंढ रहा हूं। क्या कोई ऐसा उपकरण है जो बॉक्स से बाहर है या क्या मुझे स्वयं कुछ स्क्रिप्टिंग आती है?

संदर्भ के लिए, लाइन-एंडिंग से संबंधित मेरा Git कॉन्फिग:

core.safecrlf=true
core.autocrlf=input

जवाबों:


268

dos2unix आपके लिए ऐसा करता है। बहुत सीधे आगे की प्रक्रिया।
dos2unix filename

टूलबियर के लिए धन्यवाद, यहां एक-लाइनर है जो पुन: लाइन अंत की जगह लेता है और ठीक से व्हाट्सएप, उद्धरण और शेल मेटा चार्ट को संभालता है।

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

यदि आप dos2unix 6.0 बाइनरी फ़ाइलों का उपयोग कर रहे हैं तो इसे अनदेखा कर दिया जाएगा।


8
find blog -type f | xargs dos2unixऔर तेज होना चाहिए। -name *.*जब तक आप विशेष रूप से केवल नाम के साथ एक अवधि के साथ केवल फ़ाइल चाहते हैं, तब तक आपको इसकी आवश्यकता नहीं है । यह एक विंडोज़ ग्लोब है, न कि * निक्स।
बेकार

15
यदि उनके रास्ते में व्हाट्सएप, कोट्स, या अन्य शेल मेटा वर्णों के साथ कोई भी फ़ाइल मेल खाती है, तो पाइपिंग विफल findहो xargsजाएगी findfind blog -type f -print0 | xargs -0 dos2unixव्हाट्सएप के मामले को संभालने के लिए कम से कम उपयोग करें। आप का उपयोग करने के find's -execबजाय उद्धरण से बचने के लिए पाइप की, आदि .. dos2unixआदमी पेज निर्दिष्ट नहीं है क्या उसके व्यवहार है अगर आप इसे आह्वान बाइनरी फ़ाइलें पर। यदि यह बाइनरी फ़ाइलों में CRLF को रूपांतरित करता है, तो यह उन्हें दूषित कर देगा। एक अधिक सुरक्षित विकल्प के लिए, मेरे जवाब को सुरक्षित देखें।
टूलबेयर

1
@lukmdo जो कि सेंटोस 6.4 पर संस्थापित संस्करण नहीं है ..... जो उन्हें क्लोब
Kerridge0 करना था।

परिशिष्ट: dos2unix CLI सबसे आसानी से Homebrew (और npm) के माध्यम से स्थापित किया गया है।
2540625

2
यदि संभव हो तो इस दृष्टिकोण का उपयोग करके निर्देशिकाओं को कैसे अनदेखा किया जाएगा?
डेटापाइप_वॉयड 1

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संचित मिलान फ़ाइलों के लिए और उन्हें आदेश में से एक (या संभव के रूप में कुछ के रूप में) आमंत्रण को पारित - करने के लिए पाइप की तरह xargsहै, लेकिन समस्याओं के बिना फ़ाइल पथ रिक्त स्थान, उद्धरण, या अन्य खोल मेटा वर्ण हैं, तो। iमें -piपर्ल बताता है जगह में फ़ाइल को संशोधित करने के लिए। आप किसी काम के साथ sedया awkयहाँ उपयोग कर सकते हैं , और आप शायद '+' को 'बदलेंगे'? और प्रत्येक मैच के लिए एक अलग प्रक्रिया लागू करें:

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

6
मामले में यह किसी को भी मदद करता है: grep -qIP '\r\n'मेरे सेंटोस सिस्टम पर कभी भी कुछ भी मेल नहीं खाता। इसे बदलने का grep -qIP '\r$'काम किया।
स्टीव ओनोराटो

टिप्पणियों में पूछने से नफरत है, लेकिन क्या फ़ोल्डर को बाहर करने का एक तरीका है node_modules?
डेटापाइप_वॉइड

1
@datatype_void निर्देशिकाओं को बाहर करने के लिए कमांड के हिस्से को कैसे संशोधित करें, इसके लिए stackoverflow.com/questions/4210042/… पर एक नज़र डालें find। वे उपयोग करने का सुझाव देते हैं -path, लेकिन आप इसका उपयोग भी कर सकते हैं -regexया कर सकते हैं -iregex, अर्थात -not -regex '.*/node_modules/.*'जो node_modulesकिसी भी गहराई पर शामिल नहीं होगा ।
टूलबियर

क्षमा करें यदि मैं एक के रूप में बाहर आ regexया bashnoob, लेकिन क्या कई बहिष्करण के बारे में कहते हैं, node_moduleऔर distउदाहरण के लिए?
datatype_void

-Pझंडे के लिए GNU grep आवश्यक है । OS X ने GNU grep से BSD grep पर स्विच किया। OS X के लिए कुछ विकल्प: stackoverflow.com/questions/16658333/…
टूलबार

28

यहां एक बेहतर विकल्प है: स्विस फ़ाइल चाकू । यह उप-निर्देशिका में पुनरावर्ती रूप से काम करता है, और ठीक से रिक्त स्थान और विशेष पात्रों को संभालता है।

तुमको बस यह करना है:

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.

संपादित करें: सावधानी का एक शब्द: बाइनरी फ़ाइलों वाले फ़ोल्डरों पर इसे चलाने के दौरान सावधान रहें, क्योंकि यह आपकी फ़ाइलों को प्रभावी ढंग से नष्ट कर देगा, विशेष रूप सेनिर्देशिका को । यदि यह आपका मामला है, तो पूरे फ़ोल्डर में sfk चलाएं, लेकिन इसके बजाय विशिष्ट फ़ाइल एक्सटेंशन का चयन करें (* .rb, * .py, आदि)। उदाहरण:sfk remcr -dir chef -file .rb -file .json -file .erb -file .md


OSX Mavericks पर बढ़िया काम करता है। कुछ भी स्थापित करने की आवश्यकता नहीं है, बस माउंटेड डीजीएम से स्क्रिप्ट चलाएं और आपका टर्मिनल जाने के लिए तैयार दिखाई देता है।
नैट कुक

@ गुई एम्ब्रोस आपको .git फ़ोल्डर के अंदर फाइलों के बारे में चिंता करने की आवश्यकता नहीं है। sfk डिफ़ॉल्ट रूप से छिपे हुए फ़ोल्डरों के अंदर फाइलों को अपडेट नहीं करता है।
बिट्सुसरकर

1
@bittusarkar: मेरे जवाब के समय, sfkप्रभावी रूप से मेरे पूरे .it फ़ोल्डर को संसाधित किया और बायनेरिज़ के एक समूह को नष्ट कर दिया (इसलिए मेरा संपादन ; याद नहीं कि क्या यह लिनक्स या मैक था)। उन्होंने हाल के संस्करणों में डिफ़ॉल्ट व्यवहार को बदल दिया हो सकता है, लेकिन मैं अभी भी एक्सटेंशन को सुरक्षित रखने के लिए निर्दिष्ट करने की सलाह दूंगा।
गुई एंब्रोज

1
यह मेरे लिए अच्छी तरह से काम किया है, बहुत अधिक समय बिताने के बाद सिफारिश किए गए गिट कमांड का उपयोग करके मेरे रिपोज को सामान्य करने की कोशिश कर रहा है जो कि सभी प्रासंगिक फाइलों को ठीक नहीं करता है।
कोणीय काल

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' {} \;

यह बहुत सुरक्षित है क्योंकि यह आपके git रेपो को नष्ट करने से बचता है। करने के लिए अपने का उपयोग कर जोड़ें या बदलने के .git, .svn साथ .bzr, .hg या जो भी स्रोत नियंत्रण नहीं सूची।


3
यह सबसे अच्छा जवाब है अगर आपको dos2unix जैसी कोई भी चीज इंस्टॉल नहीं करनी है। फ़ाइल प्रकारों के बहिष्करण की अनुमति देता है और स्रोत कोड फ़ाइलों को दूषित करने से बचता है।
राघवन

10

OS X पर, इसने मेरे लिए काम किया:

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

चेतावनी: कृपया इस कमांड को निष्पादित करने से पहले अपनी निर्देशिका का बैकअप लें।


5
बस यह ध्यान रखना चाहता हूं कि इसने मेरे गिट रिपॉजिटरी को दूषित कर दिया। मैंने दौड theे से पहले .git फ़ोल्डर को चलाकर और बेहतर सफलता के साथ बाद में वापस ले जाकर फिर से कोशिश की।
garie

1
मैं यह भी नोट करूंगा कि यह बाइनरी फ़ाइलों को बाहर नहीं करता है, इसलिए यह आपके jpgs को भ्रष्ट करेगा।
नीक

0

यहाँ एक समाधान अगर sed का उपयोग कर:

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

-i यदि आप एक बैकअप बनाने के साथ-साथ उपयोग करना चाहते हैं, तो इन-प्लेस के लिए खड़ा है -i.bak

's/\r$//'\rप्रत्येक पंक्ति के अंत में सभी कैरिज रिटर्न ( ) को बदल देगा

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.