vote up 2 vote down star

I am trying to use hexl mode to manually remove some special chars from a text file and don't see how to delete anything in hexl mode.

What I really want is to remove carriage return and keep linefeed characters. Is Hexl mode the right way to do this?

flag

50% accept rate
If it's a text file... why use hexl mode? – Trey Jackson Jul 23 at 15:02
I'm trying to remove a carriage return and leave a line feed...don't ask - the program that's reading this config file wants it that way. – Brandon Leiran Jul 23 at 15:32

8 Answers

vote up 5 vote down

No need for hexl-mode for this. Just do a global-search-and-replace of ^J^M with ^J Works for me. :) Then save the file, kill the buffer, and revisit the file so the window shows the new file mode (Unix vs DOS).

link|flag
This always works for me. – Cheeso Jul 27 at 19:05
Why even bother to do this? Do what keysersoze suggests and use dos2unix and/or unix2dos. – Thomas Owens Jul 27 at 19:20
vote up 3 vote down

There's also a command-line tool called unix2dos/dos2unix that exists specifically to convert line endings.

link|flag
vote up 2 vote down

Assuming you want a DOS encoded file to be changed into UNIX encoding, use M-x set-buffer-file-coding-system (C-x RET f) to set the coding-system to "unix" and save the file.

link|flag
vote up 1 vote down

If you want to remove a carriage return (usually displayed as ^M) and leave the line feed. You can just visit the file w/out any conversion:

M-x find-file-literally /path/to/file

Because a file with carriage returns is generally displayed in DOS mode (hiding the carriage returns). The mode line will likely display (DOS) on the left side.

Once you've done that, the ^M will show up and you can delete them like you would any character.

link|flag
vote up 1 vote down

Oops. That ^J^M needs to be entered as two literal characters. Use ctrl-Q ctrl-J ctrl-Q ctrl-M and for the replacement string, use ctrl-Q ctrl-J

link|flag
vote up 1 vote down

(in hexl mode) I'm not sure that you can delete characters. I've always converted them to spaces or some other character, switched to the regular text editor, and deleted them there.

link|flag
vote up 1 vote down

You don't need to use hexl-mode. Instead:

  • open file in a way that shows you those ^M's. See M-x find-file-literally /path/to/file above. In XEmacs you can also do C-u C-x C-f and select binary encoding.
  • select the string you want replace and copy it using M-w
  • do M-% (query replace) and paste what you want to copy using C-y
  • present Enter when prompted to what replace it with
  • possible press ! now to replace all occurrences

The point is that even if you don't how to enter what you are trying to replace, you can always select/copy it.

link|flag
vote up 1 vote down

From http://www.xsteve.at/prg/emacs/xsteve-functions.el:

;02.02.2000
(defun xsteve-remove-control-M ()
  "Remove ^M at end of line in the whole buffer."
  (interactive)
  (save-match-data
    (save-excursion
      (let ((remove-count 0))
        (goto-char (point-min))
        (while (re-search-forward (concat (char-to-string 13) "$") (point-max) t)
          (setq remove-count (+ remove-count 1))
          (replace-match "" nil nil))
        (message (format "%d ^M removed from buffer." remove-count))))))

Add this to your .emacs and run it via M-x xsteve-remove-control-M or bind it to a easier key. It will strip the ^Ms in anymode.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.