mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-12 03:35:02 -04:00
18 lines
No EOL
339 B
Bash
Executable file
18 lines
No EOL
339 B
Bash
Executable file
#! /bin/bash
|
|
# script to print a chessboard
|
|
|
|
for (( i = 1; i <= 9; i++ ))
|
|
do
|
|
for (( j = 1; j <= 9; j++))
|
|
do
|
|
tot=`expr $i + $j`
|
|
tmp=`expr $tot % 2`
|
|
if [ $tmp -eq 0 ]; then
|
|
echo -e -n "\033[47m "
|
|
else
|
|
echo -e -n "\033[40m "
|
|
fi
|
|
done
|
|
echo -e -n "\033[40m" # set to black
|
|
echo"" # print new line
|
|
done |