From 229f2b982ea369c3f3bfb31cdacdc28bd9e88030 Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Sun, 3 Mar 2024 07:43:50 +0300 Subject: [PATCH] #185 show numbers right, in .tex --- tex/report.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tex/report.tex b/tex/report.tex index 15f48d5c..24ba8a1a 100644 --- a/tex/report.tex +++ b/tex/report.tex @@ -52,10 +52,10 @@ \begin{itemize} \item \ff{data/} is the collection of \ff{.csv} files with the data - (\iexec{find "${TARGET}/data" -type f -name '*.csv' | wc -l}\unskip{} total); + (\iexec{printf "\%'d" "$(find "${TARGET}/data" -type f -name '*.csv' | wc -l)"}\unskip{} total); \item \ff{github/} is the entire collection of - \iexec{find "${TARGET}/github" -type f -name '*.java' | wc -l}\unskip{} + \iexec{printf "\%'d" "$(find "${TARGET}/github" -type f -name '*.java' | wc -l)"}\unskip{} source files ``as is'' (\iexec{du -sh "${TARGET}/github" | cut -f1}\unskip{} total).