11 lines
361 B
Text
11 lines
361 B
Text
|
#!/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}%"
|
||
|
|