How count up lines in a directory
Description
Quick overview of counting up lines inside the directory for all files.
CLI
⛶find "$1" -type f -exec cat {} + | wc -l
ZSH or Bash config
⛶clines() {
if [ -z ...