Mitt exempel är inte Bash, men jag skulle vilja påpeka mina parametrar för att anropa mysql-kommandot, de undertrycker boxningen och rubrikerna.
#!/bin/sh
mysql dbname -B -N -s -e "SELECT * FROM tbl" | while read -r line
do
echo "$line" | cut -f1 # outputs col #1
echo "$line" | cut -f2 # outputs col #2
echo "$line" | cut -f3 # outputs col #3
done