Hello... Linuxers...
	Last night, I saw someone request duel, yeah.. here is it.
	What is duel? you might be interrested, I will tell you:

		Duel is an add-on command set to GDB by Michael Golen
		(mg@cs.princeton.edu), it makes GDB much more powerful.
		Actually, Duel commands is C look-like, you can use it
		naturally. Duel aims to manage program data.
		
		For example:
		Problem: you want to list array of int x, from elements 10-20,
		you just type in debugger:

			dl int i; for (i=10; i<=20; i++) printf("e%d = %d\n", i, x[i]);

		Just this!!! no needs make a stub in the program and recompile,
		Duel itself is a small C interpreter! 

		Ok.... what I put in this package..

		/supoj/*                 README docs..(could be deleted after read)
		/usr/info/*              GDB info docs.
		/usr/local/bin/gdbduel   this is the code..
                                 it is GDB 4.12 for linux + DUEL 1.10.4
		/usr/man/man1/*.1        man pages for GDB and DUEL
							     you can type  'man gdb' and
							 	 'man duel' for more info.

Note: if you satisfied with gdbduel, you might want to delete plain gdb
      for saving some space...
													Have fun
											Supoj Choachaicharoenkul
											(supoj@kmitnb03.kmitnb.ac.th)
