mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
13 lines
185 B
Plaintext
13 lines
185 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
min=0
|
||
|
|
||
|
while IFS= read -r line; do
|
||
|
echo "$line"
|
||
|
if [[ $line =~ \(([0-9]+)m\) ]]; then
|
||
|
((min+=${BASH_REMATCH[1]}))
|
||
|
fi
|
||
|
done
|
||
|
echo
|
||
|
echo "TOTAL MINUTES: $min"
|