mirror of https://github.com/tildeclub/ttrv.git
16 lines
405 B
Bash
Executable File
16 lines
405 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
ROOT="$(dirname "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )")"
|
|
|
|
cd ${ROOT}
|
|
echo -e "\nTests: "
|
|
echo "$(wc -l tests/*.py)"
|
|
echo -e "\nScripts: "
|
|
echo "$(wc -l scripts/*)"
|
|
echo -e "\nTemplates: "
|
|
echo "$(wc -l ttrv/templates/*)"
|
|
echo -e "\nCode: "
|
|
echo "$(wc -l ttrv/*.py)"
|
|
echo -e "\nCombined: "
|
|
echo "$(cat tests/*.py scripts/* ttrv/templates/* ttrv/*.py | wc -l) total lines"
|