#!/bin/bash
# init
function pause(){
   read -n 1 -p "$*"
   }
   
   pause 'Press any key to continue...'
   echo ''
   
   