Skip to content

Commit

Permalink
add a bash script to enumerate .cpp and .inl source files
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 17, 2025
1 parent e7ac1c5 commit 95cab9a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bash/list-cpps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

/usr/bin/find ./src/main/native -name '*.cpp' -printf '$(N)/%P \\\n' \
| /usr/bin/sort

/usr/bin/find ./src/main/native -name '*.inl' -printf '$(N)/%P \\\n' \
| /usr/bin/sort

0 comments on commit 95cab9a

Please sign in to comment.