2022-11-17 14:53:48 +01:00
|
|
|
#!/usr/bin/bash
|
|
|
|
touch all_tasks.org
|
|
|
|
echo "" > all_tasks.org
|
2023-01-09 00:04:26 +01:00
|
|
|
cat ~/Nextcloud/textes/orgmode/tasks.org >> all_tasks.org
|
|
|
|
cat ~/Nextcloud/textes/orgmode/tasks.org_archive >> all_tasks.org
|
|
|
|
cp all_tasks.org ~/Nextcloud/textes/orgmode/stats
|
2023-03-04 23:52:46 +01:00
|
|
|
echo "concaténation des fichiers tasks.org et tasks.org_archive faite dans all_tasks.org"
|
2022-12-17 10:53:35 +01:00
|
|
|
|
|
|
|
touch stats.org
|
|
|
|
date >> stats.org
|
|
|
|
echo " décomptes: " >> stats.org
|
2023-03-04 23:52:46 +01:00
|
|
|
# dans les archives, les tâches sont toujours un header de niveau 1, on peut donc les trouver avec la recherche de : "* "
|
2022-11-17 14:53:48 +01:00
|
|
|
todos=`grep -o '* TODO' all_tasks.org | wc -l`
|
2023-03-14 18:04:54 +01:00
|
|
|
echo " TODO : $todos" | tee -a ./stats.org
|
2022-11-17 14:53:48 +01:00
|
|
|
|
|
|
|
counter=`grep -o '* SOMEDAY' all_tasks.org | wc -l`
|
2023-03-14 18:04:54 +01:00
|
|
|
echo " SOMEDAY : $counter" | tee -a ./stats.org
|
2022-11-17 14:53:48 +01:00
|
|
|
someday=$counter
|
|
|
|
|
|
|
|
counter=`grep -o '* WAITING' all_tasks.org | wc -l`
|
2023-03-14 18:04:54 +01:00
|
|
|
echo " WAITING : $counter" | tee -a ./stats.org
|
|
|
|
echo " " | tee -a ./stats.org
|
2022-11-17 14:53:48 +01:00
|
|
|
counter=`grep -o '* CANCELLED' all_tasks.org | wc -l`
|
|
|
|
cancelled_tasks=$counter
|
2023-03-14 18:04:54 +01:00
|
|
|
echo " CANCELLED : $counter" | tee -a ./stats.org
|
2022-11-17 14:53:48 +01:00
|
|
|
|
|
|
|
counter=`grep -o '* DONE' all_tasks.org | wc -l`
|
|
|
|
done=$counter
|
2023-03-14 18:04:54 +01:00
|
|
|
echo " DONE : $counter" | tee -a ./stats.org
|
2022-11-17 14:53:48 +01:00
|
|
|
|
|
|
|
prevus=$((todos + someday))
|
|
|
|
finis=$((cancelled_tasks + done))
|
|
|
|
tout=$((prevus + finis))
|
2023-03-14 18:04:54 +01:00
|
|
|
echo " " | tee -a ./stats.org
|
|
|
|
echo " prévus : $prevus" | tee -a ./stats.org
|
|
|
|
echo " finis : $finis" | tee -a ./stats.org
|
2022-12-17 10:53:35 +01:00
|
|
|
counter=`grep -o '* CREATED' all_tasks.org | wc -l`
|
2023-03-14 18:04:54 +01:00
|
|
|
echo " CREATED : $counter" | tee -a ./stats.org
|
|
|
|
echo " en tout : $tout" | tee -a ./stats.org
|
2023-01-09 00:04:26 +01:00
|
|
|
counter=`ls -l ~/Nextcloud/textes/orgmode/org-roam/*.org | wc -l`
|
2023-03-14 18:04:54 +01:00
|
|
|
echo " Roam files : $counter" | tee -a ./stats.org
|
|
|
|
echo " " | tee -a ./stats.org
|
2022-11-17 14:55:55 +01:00
|
|
|
|
2022-12-17 10:53:35 +01:00
|
|
|
#pandoc -i all_tasks.org -o all_tasks.json
|
|
|
|
|