#!/bin/bash
cd /myfiles
while true;
do
sleep_time=10
pwd;
printf 'Sleeping "%s" seconds...\n' "${sleep_time}";
sleep ${sleep_time};
printf 'Running git clone...\n' "${sleep_time}";
git clone something;
done
Created
August 21, 2020 01:11
-
-
Save evandrocoan/0625199dd0b9e666d502476ade9eacb9 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment