mirror of
https://github.com/tomgi/git_stats.git
synced 2024-12-22 13:32:17 +01:00
8 lines
231 B
Bash
8 lines
231 B
Bash
|
#!/bin/bash
|
||
|
for repo_path in ~/workspace/test_repos/*; do
|
||
|
project_name="$(basename $repo_path)"
|
||
|
output_path=$(readlink -m ~/workspace/git_stats/examples/$project_name)
|
||
|
|
||
|
git_stats generate -p $repo_path -o $output_path
|
||
|
done
|