aboutsummaryrefslogtreecommitdiff
path: root/cddl/contrib/dtracetoolkit/Examples/whatexec_example.txt
blob: 519909ec789d961de69c46ebf2497e7778bf2a40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
The following are demonstrations of the whatexec.d script.


Here we run it while a few commands are also executed,

   # ./whatexec.d
   PEXEC            EXEC                                   OK TYPE
   bash             /usr/bin/clear                          Y #!/u\0
   bash             /sbin/sh                                Y \177ELF\0
   clear            /usr/bin/tput                           Y \177ELF\0
   bash             /export/home/brendan/DOOM.EXE           N MZ\644\0
   ^C

whatexec.d has first found that "clear" was run, which has a type that
begins with "#!" - a script. clear runs "sh" and "tput", both ELF files.

We finish by attempting to run a MZ file, "DOOM.EXE", which is rejected
(OK is "N").