strbonacci FIXED by mute

while read -a a
do for((i=0;i++<8;)) {
a[i+1]=${a[i]}${a[i-1]}
printf %s ${a[i-1]}
((i<8))&&printf \ ||echo
}
done

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page