diff --git a/coverage b/coverage new file mode 100755 index 0000000..10b7eba --- /dev/null +++ b/coverage @@ -0,0 +1,10 @@ +#!/bin/bash + +DOTFILESINHOME=$(find ~/ -maxdepth 1 -type f -iname '.*rc' | wc -l) +DOTFILESINCONF=$(find ~/.config -maxdepth 1 -type d | wc -l) +SAVEDDOTFILES=$(ls -d ~/dotfiles | wc -l) + +TOTALDOTFILES=$(echo "$DOTFILESINCONF + $DOTFILESINHOME" | bc -l) +PERC=$(echo "scale=2; $SAVEDDOTFILES / $TOTALDOTFILES" | bc -l) +echo "Coverage is (roughly) around ${PERC}%" +