scratchpad: repeat: run a command in a certain interval or as soon as it finishes

This commit is contained in:
Christian Schwarz
2017-07-07 14:23:53 +02:00
parent 2c13fbe6ec
commit 8e378d76b9
2 changed files with 52 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/sh
echo -n ' start '
date
sleep $1
echo -n 'done '
date