7 lines
56 B
Bash
7 lines
56 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
while true; do
|
||
|
|
echo `date`;
|
||
|
|
sleep 60;
|
||
|
|
done
|