Hey there,
Well, now that the sickness is abating, I'm back to working on the weekend ;)
Hope you enjoy this cool little screensaver script I found over at BloggEd
I included the basic code below, but you should check out the site for a good write-up and instruction on how to use and modify it for your system's kernel.
Enjoy :)
#!/bin/sh
file=phosphor-kernel-src.pl # script to create
linux_src_dir=/usr/src/linux # location of kernel src
cat << EOF > "$file"
#!/usr/bin/perl
srand;
rand(\$.) < 1 && (\$line = \$_) while <DATA>;
print \$line;
__DATA__
EOF
find -L "$linux_src_dir" -name \*.c >> $file
chmod 555 $file
, Mike
Please note that this blog accepts comments via email only. See our Mission And Policy Statement for further details.