summaryrefslogtreecommitdiff
path: root/daily.sh
blob: 2c249e6883f4af4c5bc3fe860879bf2458fd8832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

actions=??-*.sh

for a in $actions
do
	if [ -x $a ]
	then
		# Run each executable action in sequence.
		echo "Executing : $a"
		./$a;
		echo
	fi;
done