mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 13:59:29 +00:00
14 lines
279 B
Bash
Executable File
14 lines
279 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Clean call on a long period
|
|
# This script is made to be used on dev machines only
|
|
# @author Pierre HUBERT
|
|
|
|
# Place us in current directory
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $SCRIPT_DIR;
|
|
|
|
while true; do
|
|
./clean_calls
|
|
sleep 30;
|
|
done |