I want to run a shell scipr that prints out the top 50 lines of a number of files. After the head of each file is printed, I want the script to allow the user to view that content for 10 seconds before printing out the head of the next file. E.g
head -n 50 file1
wait 10 seconds
head -n 50 file2
wait 10 seconds
and so on...
Thanks in advance for any help