Pretyy-up the WiKi table with the date of last update for each sample.

/trunk/scripts/showSamples.sh |   15    12     3     0 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)
This commit is contained in:
Yann E. MORIN" 2008-07-29 16:48:20 +00:00
parent 4b53fa764f
commit f7b84b7716

View File

@ -86,6 +86,14 @@ dump_single_sample() {
else else
printf "| [[http://ymorin.is-a-geek.org/|YEM]] " printf "| [[http://ymorin.is-a-geek.org/|YEM]] "
fi fi
sample_updated=$(date -u "+%Y%m%d" \
-d "$(LC_ALL=C svn info ${sample_top}/samples/${sample} \
|GREP_OPTIONS= egrep '^Last Changed Date:' \
|sed -r -e 's/^[^:]+: //;' \
-e 's/^(.+:.. [+-][[:digit:]]{4}) \(.+\)$/\1/;' \
)" \
)
printf "| ${sample_updated} "
echo "|" echo "|"
fi fi
} }
@ -97,7 +105,7 @@ for sample in "${@}"; do
done done
if [ "${opt}" = -w ]; then if [ "${opt}" = -w ]; then
echo "^ $(date +%Y%m%d.%H%M) ^ |||||||||||" echo "^ @@DATE@@ ^ ||||||||||||"
printf "^ Target " printf "^ Target "
printf "^ Kernel headers\\\\\\\\ version ^" printf "^ Kernel headers\\\\\\\\ version ^"
printf "^ binutils version " printf "^ binutils version "
@ -106,7 +114,8 @@ if [ "${opt}" = -w ]; then
printf "^ Threading model " printf "^ Threading model "
printf "^ Floating point\\\\\\\\ support " printf "^ Floating point\\\\\\\\ support "
printf "^ Languages " printf "^ Languages "
printf "^ First reported by " printf "^ Initially\\\\\\\\ reported by "
printf "^ Last\\\\\\\\ updated "
echo "^" echo "^"
fi fi
@ -115,6 +124,6 @@ for sample in "${@}"; do
done done
if [ "${opt}" = -w ]; then if [ "${opt}" = -w ]; then
printf "^ Total: ${#@} samples | |||||||||||" printf "^ Total: ${#@} samples | ||||||||||||"
echo "" echo ""
fi fi