9 lines
163 B
Bash
Executable File
9 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
while true; do
|
|
now=$(date +"%Y-%m-%d--%T")
|
|
echo "export publication -- $now"
|
|
./publi.py
|
|
echo "sleeping 15sec befor new export"
|
|
sleep 5s
|
|
done
|