We have created a template for the future stayrolling scripts. It is a good occasion to explain how to create your own scripts. 1. Create a file and name it somename.sh2. Make it executable. chmod +x somename.sh 3. Add the shebang to the file. #!/bin/bash 4. Then you...