#!/bin/sh
#] 
#] *********************
#] $ bash "$d_bin""text scroll.sh"  - attempt to smooth scroll a text file for use in videos
# www.BillHowell.ca  29Aug2019 initial 

# https://stackoverflow.com/questions/4064651/what-is-the-best-way-to-do-smooth-scrolling-in-vim
# What is the best way to do smooth scrolling in Vim?
# >> looks interesting..



#] text_scroll()  - 

	text_scroll()
{  
while read -u 9 line; do
	echo "$line"
	sleep "$1"s
done 9< "$2" 
}  



text_scroll  0.05  "/media/bill/RaspPi_ext4_32Gb/Lucas - Universal Force/Howell - math of Lucas Universal Force.txt"


# $ bash  "/media/bill/SWAPPER/bin/text scroll.sh"  



# enddoc
