The line-endings tag has no wiki summary.
0
votes
1answer
27 views
How to end a statement in Ruby
I have code like
word.include?("test") ? @test = word : #do nothing
My issue is that rails expects something after the colon and treats the next line of code as if it's part of the conditional ...
0
votes
1answer
41 views
Specify line.separator as a compiler setting?
As suggested by this answer:
You can call
System.setProperty("line.separator", "\r\n");
in order to set the system property inside your code.
it is quite easy to make a Java program ...
0
votes
0answers
36 views
Inconsistent line Endings in generating a file using SingleFileGenerator
I have created a Custom tool (SingleFile generator) using IVsSingleFileGenerator. Which takes "xyz.Resx" file as input and generate "xyz.Designer.resx.cs" file. This file can be generated on ...
1
vote
0answers
56 views
Visual Studio 2012: run executable (or addon) on save
so I've just begun using Visual Studio 2012 as a new programmer, and I'd like to find a way to have VS2012 automatically save (or at least automatically convert) files to UNIX line endings.
I found ...
2
votes
2answers
130 views
How to normalize working tree line endings in Git?
I have cloned a repository that had inconsistend line endings. I have added a .gitattributes that sets the text attribute for the files I want to normalize. Now when I commit changes I get the ...
0
votes
1answer
40 views
Which line ending/newline to use?
The web is full of explanations about the history of the newline schism. But I can't find an answer whether the world has finally agreed on one standard to end a line.
Given a Java project that is ...
1
vote
0answers
24 views
Is StreamReader changing my line endings?
I've noticed that GitHub for windows, reports some files changed that I think should not have.
The issue arrises with some .txt-files that are read in our application. After running the program, all ...
0
votes
0answers
27 views
How can I convert line endings for entire directory
I downloaded the Apache httpd 2.2.23 source code, but they only supply *nix source for that version instead of also including a win32 zip like they did for 2.2.22. From what I've read the only thing I ...
0
votes
1answer
72 views
Using Windows line endings in Perl6::Form
I'm using Perl6::Form to generate a table and output it to a text file. No matter what I do, it seems, I can't output Windows line endings. I've tried local $OUTPUT_RECORD_SEPARATOR = "\r\n"; I've ...
4
votes
2answers
214 views
How can I configure bash to handle CRLF shell scripts?
I want to execute bash scripts that happen to use Windows/CRLF line endings.
I know of the tofrodos package, and how to fromdos files, but if possible, I'd like to run them without any modification.
...
0
votes
2answers
89 views
Visual Basic- “IF” doesn't end
If My.Computer.FileSystem.FileExists("pack/locale_ro.epk") Then My.Computer.FileSystem.DeleteFile("pack/locale_ro.epk")
PB_GSM.Value = 10
If ...
4
votes
1answer
62 views
How to make vim :source accept different line endings?
Using vim's :source command on a vimscript file with dos line endings is giving me errors that it can't deal with ^M characters.
The ^M characters are part of dos line endings, but not unix line ...
2
votes
1answer
351 views
Python recognizing \r as a line delimiter
I'm using import fileinput in a Python script running on an Ubuntu box.
I'm running the script on the command line with something along the lines of python myscript.py firstinputfile.txt ...
1
vote
0answers
51 views
Eclipse Line Endings WikiText Editor
I am having a problem with line endings and the WikiText Editor in Eclipse.
If I open a *.textile document outside of a project, line endings are preserved (no CR added). I can get the two tabs; one ...
0
votes
2answers
467 views
How to redirect powershell output when run from Task Scheduler?
When running a simple powershell script from Task Scheduler, I would like to redirect the output to a file.
There is a long thread about this very topic here, yet its not clear if they reached the ...
4
votes
2answers
390 views
git line endings : renormalize does not seem to checkout the right line endings
I decided to set my line endings the Right Way via a .gitattributes file as detailed for instance here - so I set the core.autocrlf to false and created and committed a .gitattributes file :
*.java ...
0
votes
0answers
83 views
FTP client breaks PHP files during upload to server
Imagine the code:
PHP code
PHP code
PHP code //comment from developer
PHP code
Filezilla modifies files to this during upload (PC -> Server):
PHP code PHP code PHP code //comment from developer ...
2
votes
1answer
137 views
Git - changing one character in a file leads to MSysGit thinking the whole file has changed
I have a git repository containing C# code, and I'm running MSysGit on Windows.
core.autocrlf is turned on, and I'm using the .gitattributes from this question, and I "renormalised" my repo as ...
3
votes
2answers
102 views
How to properly recognize different line endings in C?
I guess the title speaks for itself.
I am coding a C program on Windows 7, using g++ and Notepad++, which compares content of files.
Content of the file:
simple
file with lines
File has line ...
0
votes
1answer
22 views
Create convert_line_endings function
I have a configuration file that is supposed to have \r\n line ending style, and I want to include the code in my program to check and correct the format.
Existing code:
int convert_line_endings(FILE ...
0
votes
2answers
431 views
Linux replace ^M$ with $ in csv
I have received a csv file from a ftp server which I am ingesting into a table.
While ingesting the file I am receiving the error "File was a truncated file"
The actual reason is the data in a file ...
0
votes
2answers
634 views
How can you convert LF's to CRLF in a text file using a vbscript?
I have a CSV file that gets generated by a Mac program (unfortunately, with little encoding flexibility) which writes LFs at the end of lines. Then a vbscript reads this file like so:
Set objTextFile ...
3
votes
2answers
332 views
How can I change the line endings used by fputcsv?
I create a CSV file for download by our client using
$output = fopen('php://output', 'w');
and using fputcsv() to write data to a CSV file which is downloaded by the client.
I am running PHP on ...
0
votes
2answers
985 views
Can't seem to write a valid .ics file?
I need your help. I'm writing a iCal .ics File-format with a php function.
If I open the .ics file with iCal it says the application says: "Calendar can’t read this calendar file. No events have ...
17
votes
2answers
8k views
Fixing Sublime Text 2 line endings?
Here is my Settings - User config:
{
"auto_indent": true,
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme",
"default_line_ending": "LF",
"detect_indentation": true,
...
4
votes
0answers
125 views
Maven release plugin and windows line breaks
when i try to run the maven-release-plugin it changes the version in the pom.xml file.
Prior to the maven release every line ending has unix style but after running it on my windows machine, the ...
0
votes
2answers
80 views
How does line ending effect in coding?
Why do line ending differ from platform to platform? Even why is there term like line ending in programming?
I prefer saving my codes in Unix/Linux format, even if I'm on Windows. Am I missing ...
2
votes
7answers
162 views
Stripping line edings before appending to a list?
Ok I am writing a program that reads text files and goes through the different lines, the problem that I have encountered however is line endings (\n). My aim is to read the text file line by line and ...
0
votes
1answer
398 views
POSTFIX/sendmail suddenly adding extra line breaks
Over the weekend our MTA (POSTFIX) suddenly started prepending line breaks to the boundaries of our messages.
We have several PHP templates that define multipart/alternative messages and define the ...
0
votes
1answer
83 views
Convert line-endlings for whole directory tree to \r\n
As the question Convert line-endlings for whole directory tree (Git) but to Windows \r\n
Only text files (eg: .html, .css, .js, .php)
Assume complex scenarios, such as files with mixed line endings ...
1
vote
0answers
606 views
Svn non-LF line ending problems with svn:ignore on dump load
I'm trying to use dump files to migrate a repository (with history intact) on a system running svn version 1.2.3 to one running 1.7.1. Since the original repository is such an early version, using ...
1
vote
2answers
361 views
git diff thinks the last line of the file has been moved after the end of file?
After cloning a git repository from Github, if I open a file, make no changes, and save the file, the following shows up in the output of git diff:
-@import "sync.scss";
\ No newline at end of file
...
0
votes
1answer
618 views
.gitattributes default file type treatment
We've created a list of text and binary file types for our project repository, but i'm afraid that some types might have slipped out of that classification, or that in the future someone might add a ...
0
votes
1answer
135 views
Any format to UNIX end line format recursively
I have two different script to change DOS2UNIX and MAC2UNIX endline format
DOS2UNIX: perl -pi -e 's/\r\n/\n/;' < dos1.txt > dos2.txt
MAC2UNIX: perl -p -e 's/\r/\n/g' < mac1.txt > ...
1
vote
2answers
621 views
How can I fix the SVN import line endings error?
I have to import an huge SVN repository that I have to transfer from one server to another. So I exported it from the old server:
svnadmin dump . > archive.svn
and imported it on the new one:
...
1
vote
1answer
395 views
How to fix the line endings in checked out files after changing the autoclrf setting for a git repository?
I have cloned a git repository on Windows and noticed that the line endings are set to UNIX style (LF).
To fix it, I changed the repository's autocrlf value to true (core.autocrlf=true).
However, ...
1
vote
1answer
395 views
Why does Git insist that a file has been modified even after a `git checkout --`?
I made a change to a couple of files locally, without committing them. git status shows:
>> git status
# On branch feature-ravendb
# Your branch is ahead of 'origin/feature-ravendb' by 1 ...
0
votes
2answers
100 views
Multi-semicolon Line Endings: Acceptable?
So, while I was working on some code for my next app update, I noticed something strange: You can put a very large amount of semicolons at the end of Objective-C statements and it will compile just ...
2
votes
2answers
323 views
^M characters in git commit message (git commit -v)
I am having a weird problem where lots of ^M characters show up in my git commit message. Please find a screenshot attached. This is not causing any problems, just makes it annoying to read through.
...
2
votes
1answer
548 views
emacs change default line ending
in windows emacs is using crlf for a breakline, but I like to use all my files with unix line endings. I found a way to change it during my session, but I am not such an emacs guru to translate the ...
0
votes
2answers
123 views
Inconsistent results with PHP Reflection API
I have an application that works perfectly on both Windows & Mac that uses the PHP5 Reflection API.
I attempted to deploy the application to a Linux machine (CentOS box running PHP 5.3.6 ...
2
votes
1answer
270 views
How to fix inconsistent line endings for whole VS solution?
Visual Studio will detect inconsistent line endings when opening a file and there is an option to fix it for that specific file. However, if I want to fix line endings for all files in a solution, how ...
2
votes
1answer
321 views
R read.table csv with classic-mac line endings
I have a comma-separated value file that looks like this when I open it in vim:
12,31,50,,12^M34,23,45,2,12^M12,31,50,,12^M34,23,45,2,12^M
and so forth. I believe this means my CSV uses CR-only ...
2
votes
0answers
202 views
How do I manage line-endings when reading XML file in SSIS 2005
I have a simple xml file. It defined an element in that file as...
<xs:element name="Comments" >
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength ...
6
votes
3answers
2k views
How to make sure all my source files stay UTF-8 with Unix line endings?
I'm looking for some command-line tools for Linux that can help me detect and convert files from character sets like iso-8859-1 and windows-1252 to utf-8 and from Windows line endings to Unix line ...
2
votes
1answer
455 views
Can I strip carriage returns as they go into a `std::stringstream`?
struct T
{
void eat(std::string const& segment)
{
buffer << segment;
std::string sentence;
while (std::getline(buffer, sentence))
std::cout << "[" ...
2
votes
2answers
220 views
How to get suppress ^M characters in my ClojureBox (EmacsW32) REPL connected to lein swank
I am connecting to a swank server from my ClojureBox install. I.e. lein swank from my project directory and then M-x slime-connect from EmacsW32.
However, when I do this I see the DOS line-endings ...
2
votes
1answer
103 views
Is there any reason behind differents line endings?
Why documents writted in differents OSs have differents line endings characters? Are any technical reason behind this or the creators put distintinct characters just because they want.
1
vote
6answers
740 views
What is the meaning of this Python statement?
More specifically, I'm not sure what the "%" and "\" symbols coming right after each other are supposed to mean:
return 'guitar { id: %d, relevant_properties: (%.02f, %.02f, %.02f), ...
2
votes
1answer
337 views
Weird line ending conversion (CR, LF, CRLF) with istreambuf_iterator<char>(ifstream(…, ios::binary))
I'm writing a CRC32 routine in MSVC++2010 and need to read a file in binary mode, byte by byte.
I'm doing it with ifstream and istreambuf_iterator, and it generally works, but it does some weird ...





