No modified codes have been submitted for this Microcode.
Repeating history
This code was inspired by The Wheel of the Devil (MTAA and Ed Halter) and historic_loop (James Morris).
It is not recommended that you run this script as it could adversely affect your computer and files.
27. May 2009
This code was inspired by The Wheel of the Devil (MTAA and Ed Halter) and historic_loop (James Morris).
It is not recommended that you run this script as it could adversely affect your computer and files.
27. May 2009
#!/usr/bin/perl sub relive {$command = shift;print `$command`;} $bash_history = $ENV{ HOME }."/.bash_history"; while(1){ open(HISTORY, $bash_history); while($moment = <HISTORY>){ relive($moment); } }