Path: utzoo!utgpu!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!mailrus!husc6!rice!sun-spots-request From: dupuy@columbia.edu (Alexander Dupuy) Newsgroups: comp.sys.sun Subject: Re: disassemblers for Sun Message-ID: <8812211955.AA02459@cs.columbia.edu> Date: 3 Jan 89 14:40:18 GMT Sender: usenet@rice.edu Organization: Sun-Spots Lines: 12 Approved: Sun-Spots@rice.edu Original-Date: Wed, 21 Dec 88 14:55:34 EST X-Sun-Spots-Digest: Volume 7, Issue 84, message 7 of 14 One of the nice things about the Unix philosophy is that you can take tools which don't do quite what you want (or perhaps in your case, more than you want) and to some extent create new interfaces for them. One of the easiest ways to do that is with a shell script: #!/bin/sh - echo 'start,etext?i' adb $1 does just about exactly what you want - though it's not quite as useful for dynamically linked excutables. @alex