6 lines
201 B
Plaintext
6 lines
201 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
git clone --depth 1 "$1" temp-linecount-repo &&
|
||
|
printf "('temp-linecount-repo' will be deleted automatically)\n\n\n" &&
|
||
|
cloc temp-linecount-repo &&
|
||
|
rm -rf temp-linecount-repo
|