Scritp to wait for few seconds before executing next line

I have a script which copies(scp) .war file to tomcat's webapps and the .war file extracts creating a folder under webapps directory on a ubuntu system. My next line of the script is restarting the tomcat which is executed immediately before the .war is extracted and this causing problem with

Is it possible so that it waits for few seconds/minutes before it executes the next line of the script. The script is of normal ubuntu commands.


sleep <seconds>


Use sleep 60 for 1 min.


Command sleep allows you to insert breaks to your scripts. For example, sleep 10 would wait 10 seconds before proceeding.