#!/bin/bash if [ -z "$1" ]; then echo "provide the url for shell file" exit 1 fi remote_shell_file = "$1" while true; do wget "$remote_shell_file" sleep 60 done