Prev: shebang and ubuntu
Next: rsync mystery
From: hehehe on 9 Feb 2010 06:19 Hello! I need to find program like cat to show bin file? Where is any? regards - MJ
From: hehehe on 9 Feb 2010 06:45 U�ytkownik "hehehe" <m(a)m.ccc> napisa� w wiadomo�ci news:hkrgbh$1sji$1(a)news2.ipartners.pl... > Hello! > > I need to find program like cat to show bin file? Where is any? > > regards - MJ strings - works for me thx for help
From: Robert Heller on 9 Feb 2010 07:34 At Tue, 9 Feb 2010 12:45:33 +0100 "hehehe" <m(a)m.ccc> wrote: > > > U¿ytkownik "hehehe" <m(a)m.ccc> napisa³ w wiadomo¶ci > news:hkrgbh$1sji$1(a)news2.ipartners.pl... > > Hello! > > > > I need to find program like cat to show bin file? Where is any? > > > > regards - MJ > > strings - works for me > > thx for help > > If the file really is binary, od can be used to display the contents in a variaty of formats (single bytes, shorts, and longs in hex, octal, decimal; as well as ascii characters). -- Robert Heller -- 978-544-6933 Deepwoods Software -- Download the Model Railroad System http://www.deepsoft.com/ -- Binaries for Linux and MS-Windows heller(a)deepsoft.com -- http://www.deepsoft.com/ModelRailroadSystem/
From: Grant Edwards on 9 Feb 2010 11:13 On 2010-02-09, Robert Heller <heller(a)deepsoft.com> wrote: > At Tue, 9 Feb 2010 12:45:33 +0100 "hehehe" <m(a)m.ccc> wrote: >> U??ytkownik "hehehe" <m(a)m.ccc> napisa?? w wiadomo??ci news:hkrgbh$1sji$1(a)news2.ipartners.pl... >> >>> I need to find program like cat to show bin file? Where is any? >> >> strings - works for me > > If the file really is binary, od can be used to display the > contents in a variaty of formats (single bytes, shorts, and > longs in hex, octal, decimal; as well as ascii characters). I find hexdump (espeically with the -C option) to produce more usable output than od. -- Grant Edwards grante Yow! Uh-oh!! I forgot at to submit to COMPULSORY visi.com URINALYSIS!
From: Teemu Likonen on 9 Feb 2010 11:24
* 2010-02-09 12:19 (+0100), hehehe wrote: > I need to find program like cat to show bin file? Where is any? For interactive use I'd suggest Emacs and its hexl-mode. Command Alt+x hexl-find-file will open a file in hexl-mode. |