Sure. Here's the one for the atmega 8:
#!/bin/sh
IPATH=`echo $0 | sed s/[^\/]*$//`;
CMD="$IPATH/bin/avrdude"
OPTS="-p m8 -b 115200 -P usb -c avrispmkII"
# Erase chip write lock and fuses
$CMD $OPTS -e -U lock:w:0x3f:m -U lfuse:w:0xdf:m -U hfuse:w:0xca:m
# Upload bootloader code
$CMD $OPTS -D -U flash:w:ATmegaBOOT.hex:i
# Lock boot section
$CMD $OPTS -U lock:w:0x0f:m
....and here's the one for the atmega 168:
#!/bin/sh
IPATH=`echo $0 | sed s/[^\/]*$//`;
CMD="$IPATH/bin/avrdude"
OPTS="-p atmega168 -b 115200 -P usb -c avrispmkII"
# Erase chip write lock and fuses
$CMD $OPTS -e -U lock:w:0x3f:m -U lfuse:w:0xdf:m -U hfuse:w:0xca:m
# Upload bootloader code
$CMD $OPTS -D -U flash:w:ATmegaBOOT_168.hex:i
# Lock boot section
$CMD $OPTS -U lock:w:0x0f:m
Seems the AVR mkII is doing something, even though it does its stuff fast now, I see the LEDs change color when it finally gets around to responding, but it does take a few minutes to start. Still no success on either the 8 or 168 chips

thanks for any and all...
Dave