From owner-freebsd-questions Tue Jul 9 22:33:07 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id WAA08956 for questions-outgoing; Tue, 9 Jul 1996 22:33:07 -0700 (PDT) Received: from hustle.rahul.net (hustle.rahul.net [192.160.13.2]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id WAA08950 for ; Tue, 9 Jul 1996 22:33:05 -0700 (PDT) Received: by hustle.rahul.net with UUCP id AA19675 (5.67b8/IDA-1.5 for questions@freebsd.org); Tue, 9 Jul 1996 22:33:01 -0700 Received: (from jim@localhost) by starshine (8.6.11/8.6.9) id VAA04711; Tue, 9 Jul 1996 21:27:43 -0700 From: Jim Dennis Message-Id: <199607100427.VAA04711@starshine> Subject: Re: binary editor (hexfile editor) To: mbeausej@QC.Bell.CA (Michel Beausejour) Date: Tue, 9 Jul 1996 21:27:41 -0700 (PDT) Cc: questions@freebsd.org In-Reply-To: <31E2BC66.2781E494@blmc36.qc.bell.ca> from "Michel Beausejour" at Jul 9, 96 04:09:10 pm X-Mailer: ELM [version 2.4 PL24] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > Is there a hexfile editor which can print the ascii code aside the > hexcode? GNUmacs: M-x hexlify-buffer (load emacs; hit the {Esc} key, then the "x" key and then type hexlify-buffer (or type 'hex{Tab} to invoke emacs function-name completion). Or look for beav (Binary Editor And Viewer) which is a Linux package -- or a DOS package that's been ported to Linux (I don't know if there's a FreeBSD port). Finally you could use 'hexdump' to create a temp file, vi to edit it, and something to convert it back (ugly). Obviously if you already have GNUmacs and know the basics that's the most painless.