Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Convert Unix line ending file to Notepad Compatible

Featured Replies

I'm sick and tired of dealing with Unix line endings on readmes and the likes so I did a quick lookup and found the following on Wikipedia though it's been modified by me.

TYPE "%1" | FIND "" /V > "%1".cleaned.txt && del "%1"

It's currently in a batch file shortcut on my sendto menu but I'll put it as an extended context menu item in the end.

Anyways, I don't have time for this. :angel

Please some of you guys are gurus when it comes to this. Just spit out a quick and dirty correct way of doing the command. It happens with .JS, .TXT, .MD (Google Chrome readmes and crap), files just name LICENSE, AUTHORS, NEWS, CONRIBUTERS, etc.

I'd like it to process a UNIX line break file, convert it to DOS terminators CR/LF, delete the original file and then rename the ???temp file??? back to the original filename.

Yeah, I could research some more but I'm just super busy and thought I'd throw this out. I got a lot going on in "RL" ATM so sorry in advance for such a request.

Edited by -X-


UNIX new line using this :

\n

while CR/LF using this :

\r\n

why do u need to convert since UNIX line break has already supported in Windows? (please correct me if i'm wrong)

with php, I use "str_replace" dont know with cmd prompt for similar function...

why do u need to convert since UNIX line break has already supported in Windows? (please correct me if i'm wrong)

You are half-wrong. ;)

Notepad does NOT support them, Wordpad does.

@-X-

The "TYPE" trick may have issues, depending on source, it would be much more logical to use a program to replace the CR with CR+LF writing to the same file.

You can use a "dedicated" tool like CRLF by Horst Schaeffer:

http://www.horstmuc.de/horst.htm

or a generic tool, like SED or gsar.

As hinted before it would make even more sense to use an editor that understands the *nix line termination and displays them properly.

jaclaz

You are half-wrong. ;)

Notepad does NOT support them, Wordpad does.

ehmmm I see, thx jaclaz

I seem to recall, (many moons ago), something like this working:

@more filename.ext>newfilename.ext@del filename.ext@ren newfilename.ext filename.ext

Therefore you may be able to use:

more "%~1">"%~dpn1.cleaned%~x1" && del "%~1"
  • 2 weeks later...

In Win98, MORE doesn't convert the EOL, but SORT does. Using the pipe as the temporary file, this works (without sorting!):

type %1 | sort /+-1 > %1

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.