Skip to content

Commit

Permalink
Follow Bash variable naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
ayberkt committed Jul 17, 2024
1 parent ba3dee3 commit b58213c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions count-agda-files-and-lines
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

ROOT_DIR=$(git rev-parse --show-toplevel)
root_dir=$(git rev-parse --show-toplevel)

git ls-files $ROOT_DIR/source | grep agda | wc -l
git ls-files $ROOT_DIR/source | grep agda | xargs cat | wc -l
git ls-files $root_dir/source | grep agda | wc -l
git ls-files $root_dir/source | grep agda | xargs cat | wc -l

0 comments on commit b58213c

Please sign in to comment.