From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <003ce23cdc52bdd33ebca7da0404ac5b@terzarima.net> To: 9fans@cse.psu.edu Subject: Re: [9fans] Plan 9 on mmuless systems. From: Charles Forsyth Date: Mon, 16 Jan 2006 01:42:38 +0000 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: d82d0760-ead0-11e9-9d60-3106f5b1d025 > OS X od. My hex values are getting reversed, i.e. 3031 9600 > becomes 0096 3130 when I dump it. When I use 5l -a though, the > values are correct. What am I doing wrong? assuming od is displaying the same order on a big endian machine as you'd see on a little-endian machine. i see that od on mac is `obsolete', replaced by hexdump, which sounds fine, but that dumps in octal too, half the time! do they have brainstorming sessions where they invent these things? try hexdump -C ... and see if that makes any difference.