mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-02 14:38:34 +02:00
11 lines
92 B
Bash
Executable file
11 lines
92 B
Bash
Executable file
#! /bin/bash
|
|
|
|
date > all.log
|
|
|
|
for i in *.t
|
|
do
|
|
./$i >> all.log 2>&1
|
|
done
|
|
|
|
date >> all.log
|
|
|