From 1c143f71511ffb4a61cf072542a9a724d68b7760 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 16 Sep 2023 10:16:53 -0300 Subject: bin/loc: Add working utility --- bin/loc | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100755 bin/loc diff --git a/bin/loc b/bin/loc new file mode 100755 index 0000000..acf0c7a --- /dev/null +++ b/bin/loc @@ -0,0 +1,63 @@ +#!/bin/sh +set -eu + +usage() { + cat <<-'EOF' + Usage: + loc + loc -h + EOF +} + +help() { + cat <<-'EOF' + + + Options: + -h, --help show this help + + + Count the lines of code in the current repository. + + + Examples: + + Just run it: + + $ loc + EOF +} + + +for flag in "$@"; do + case "$flag" in + (--) + break + ;; + (--help) + usage + help + exit + ;; + (*) + ;; + esac +done + +while getopts 'h' flag; do + case "$flag" in + (h) + usage + help + exit + ;; + (*) + usage >&2 + exit 2 + ;; + esac +done +shift $((OPTIND - 1)) + + +cloc --vcs="$(vcs -t)" . -- cgit v1.2.3