diff options
author | EuAndreh <eu@euandre.org> | 2023-09-16 10:16:53 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-09-16 10:16:53 -0300 |
commit | 1c143f71511ffb4a61cf072542a9a724d68b7760 (patch) | |
tree | 7538dc6dfd0a2399036993a7081a6bbf49e9ee45 | |
parent | bin/getip: Add matching parenthesis to case clauses (diff) | |
download | dotfiles-1c143f71511ffb4a61cf072542a9a724d68b7760.tar.gz dotfiles-1c143f71511ffb4a61cf072542a9a724d68b7760.tar.xz |
bin/loc: Add working utility
-rwxr-xr-x | bin/loc | 63 |
1 files changed, 63 insertions, 0 deletions
@@ -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)" . |