How to count the number of files in a repository folder
To count the number of files of a repository folder, access its folder and create a file with this content:
#!/bin/bash
# count inodes for each directory
LIST=`ls`
for i in $LIST; do
echo $i
find $i -printf "%i\n" | sort -u | wc -l
done
This will count how many files are content in each folder in the repository.
Last modified on Sep 16, 2015
Powered by Confluence and Scroll Viewport.