I suppose an autonomous robot with good AI that requires an operator to log in over SSH and punch Y before every shot would qualify as non-autonomous.
Of course, monitoring each shot is very tedious, hence:
UNITS="wastelayer merciless thunderdeath"
UNIT_SIZE=4096
for UNIT in $UNITS; do
for I in `seq $UNIT_SIZE`; do
yes | ssh operator@$UNIT$I epclient
done
done
Comments
Drones aren't technically robots… Loophole?! ;)
I suppose an autonomous robot with good AI that requires an operator to log in over SSH and punch Y before every shot would qualify as non-autonomous.
Of course, monitoring each shot is very tedious, hence: