I am new to shell scripting, and would like to know how to call the second script 5 seconds after running the first script.  In the example below, I would like ./csv3xlsx_osx to run 5 seconds after the python script completes. 
python script.py
./csv2xlsx_osx -infile input.csv -outfile ouptut.xlsx
How would one go about doing the equivalent of Javascript's setTimeout() in shell?
 
    