summaryrefslogtreecommitdiffstats
path: root/mockrun
blob: 7f4a9357ebaedcb9daf1f65316611557cf801853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/bash

CHECK=$(redis-cli ping)
[ "$CHECK" = "PONG" ] || exit 1

if [ "$1" = "-h" -o "$1" = "--help" ]; then
	echo "Usage $0 [ option ]"
	echo "   -e --erase to empty the queue"
	echo "   -l --list  to list the queue"
	echo "   -p --perm  to run permanently"

	exit 0

elif [ "$1" = "-l" -o  "$1" = "--list" ]; then
	redis-cli smembers mock
	exit 0

elif [ "$1" = "-e" -o  "$1" = "--erase" ]; then
	redis-cli del mock
	exit 0
fi

while true
do
	CMD=$(redis-cli spop mock)
	if [ -z "$CMD" ]; then
		if [ "$1" = "-p" -o "$1" = "--perm" ]; then
			echo -n .
			sleep 1
			continue
		else
			break
		fi
	fi
	TXT="$(echo $CMD | sed -e 's/^.*-r //;s/ .*$//')        "
	echo -en "\r$(date +%X)    ${TXT:0:10}"
	$CMD --uniqueext=$PPID && echo " Ok." || echo " Error !"
done
	
echo "$(date +%X)    Done"