mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
13 lines
185 B
Bash
Executable File
13 lines
185 B
Bash
Executable File
#!/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"
|