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