Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
zeio
/
branch
like
0
License:
apache-2.0
Dataset card
Files
Files and versions
Community
1
88b5e0b
branch
/
count.sh
zeio
feat(count): added script for counting pulled threads
0dc3cda
verified
8 months ago
raw
Copy download link
history
blame
Safe
84 Bytes
#!/bin/bash
for
folder
in
threads/*;
do
echo
"
$folder
$(ls $folder | wc -l)
"
;
done