यदि आप स्रोत नियंत्रण के लिए Git का उपयोग कर रहे हैं, तो इस से संपर्क करने का एक और तरीका है। यहाँ एक उत्तर से प्रेरित होकर , मैंने एक गिट्टुवेनज में उपयोग के लिए अपना फ़िल्टर लिखा फ़ाइल ।
इस फ़िल्टर को स्थापित करने के लिए, इसे noeol_filter
अपने रूप में कहीं पर सहेजें $PATH
, इसे निष्पादन योग्य बनाएं, और निम्न कमांड चलाएं:
git config --global filter.noeol.clean noeol_filter
git config --global filter.noeol.smudge cat
केवल अपने लिए फ़िल्टर का उपयोग शुरू करने के लिए, निम्नलिखित पंक्ति को अपने में रखें $GIT_DIR/info/attributes
:
*.php filter=noeol
यह सुनिश्चित करेगा कि आप ईओएफ पर कोई भी नया काम नहीं करेंगे .php
फ़ाइल , इससे कोई फर्क नहीं पड़ता कि विम क्या करता है।
और अब, स्क्रिप्ट ही:
#!/usr/bin/python
# a filter that strips newline from last line of its stdin
# if the last line is empty, leave it as-is, to make the operation idempotent
# inspired by: /programming/1654021/how-can-i-delete-a-newline-if-it-is-the-last-character-in-a-file/1663283#1663283
import sys
if __name__ == '__main__':
try:
pline = sys.stdin.next()
except StopIteration:
# no input, nothing to do
sys.exit(0)
# spit out all but the last line
for line in sys.stdin:
sys.stdout.write(pline)
pline = line
# strip newline from last line before spitting it out
if len(pline) > 2 and pline.endswith("\r\n"):
sys.stdout.write(pline[:-2])
elif len(pline) > 1 and pline.endswith("\n"):
sys.stdout.write(pline[:-1])
else:
sys.stdout.write(pline)