#!/bin/bash clear ls -al "$1" echo "Retrieving $1" echo "Start download, hit a key when ready." echo "When text stops, stop download and" echo "hit another key to exit." echo -e '\eV' read -srn 1 stty inlcr cat "$1" stty -inlcr read -srn 1 echo -e '\eW' clear