zeio commited on
Commit
4349b7e
Β·
verified Β·
1 Parent(s): 3c1e060

fix(index): added missing entries to index, pulled more threads, updated folder names

Browse files
This view is limited to 50 files because it contains too many changes. Β  See raw diff
Files changed (50) hide show
  1. count.sh +11 -0
  2. index.tsv +2 -2
  3. threads/{00000000-00009999 β†’ 00000001-00010000}/266160769.txt +0 -0
  4. threads/{00000000-00009999 β†’ 00000001-00010000}/296462434.txt +0 -0
  5. threads/{00000000-00009999 β†’ 00000001-00010000}/296578420.txt +0 -0
  6. threads/{00000000-00009999 β†’ 00000001-00010000}/296584018.txt +0 -0
  7. threads/{00000000-00009999 β†’ 00000001-00010000}/296633170.txt +0 -0
  8. threads/{00000000-00009999 β†’ 00000001-00010000}/296641798.txt +0 -0
  9. threads/{00000000-00009999 β†’ 00000001-00010000}/296652710.txt +0 -0
  10. threads/{00000000-00009999 β†’ 00000001-00010000}/296655454.txt +0 -0
  11. threads/{00000000-00009999 β†’ 00000001-00010000}/296684917.txt +0 -0
  12. threads/{00000000-00009999 β†’ 00000001-00010000}/296686194.txt +0 -0
  13. threads/{00000000-00009999 β†’ 00000001-00010000}/296690534.txt +0 -0
  14. threads/{00000000-00009999 β†’ 00000001-00010000}/296694799.txt +0 -0
  15. threads/{00000000-00009999 β†’ 00000001-00010000}/296701814.txt +0 -0
  16. threads/{00000000-00009999 β†’ 00000001-00010000}/296703942.txt +0 -0
  17. threads/{00000000-00009999 β†’ 00000001-00010000}/296704244.txt +0 -0
  18. threads/{00000000-00009999 β†’ 00000001-00010000}/296708334.txt +0 -0
  19. threads/{00000000-00009999 β†’ 00000001-00010000}/296708902.txt +0 -0
  20. threads/{00000000-00009999 β†’ 00000001-00010000}/296709125.txt +0 -0
  21. threads/{00000000-00009999 β†’ 00000001-00010000}/296709863.txt +0 -0
  22. threads/{00000000-00009999 β†’ 00000001-00010000}/296710490.txt +0 -0
  23. threads/{00000000-00009999 β†’ 00000001-00010000}/296711684.txt +0 -0
  24. threads/{00000000-00009999 β†’ 00000001-00010000}/296712137.txt +0 -0
  25. threads/{00000000-00009999 β†’ 00000001-00010000}/296712954.txt +0 -0
  26. threads/{00000000-00009999 β†’ 00000001-00010000}/296713148.txt +0 -0
  27. threads/{00000000-00009999 β†’ 00000001-00010000}/296716491.txt +0 -0
  28. threads/{00000000-00009999 β†’ 00000001-00010000}/296718438.txt +0 -0
  29. threads/{00000000-00009999 β†’ 00000001-00010000}/296719086.txt +0 -0
  30. threads/{00000000-00009999 β†’ 00000001-00010000}/296720332.txt +0 -0
  31. threads/{00000000-00009999 β†’ 00000001-00010000}/296721573.txt +0 -0
  32. threads/{00000000-00009999 β†’ 00000001-00010000}/296721746.txt +0 -0
  33. threads/{00000000-00009999 β†’ 00000001-00010000}/296722844.txt +0 -0
  34. threads/{00000000-00009999 β†’ 00000001-00010000}/296724545.txt +0 -0
  35. threads/{00000000-00009999 β†’ 00000001-00010000}/296724696.txt +0 -0
  36. threads/{00000000-00009999 β†’ 00000001-00010000}/296725117.txt +0 -0
  37. threads/{00000000-00009999 β†’ 00000001-00010000}/296725594.txt +0 -0
  38. threads/{00000000-00009999 β†’ 00000001-00010000}/296726523.txt +0 -0
  39. threads/{00000000-00009999 β†’ 00000001-00010000}/296726586.txt +0 -0
  40. threads/{00000000-00009999 β†’ 00000001-00010000}/296726617.txt +0 -0
  41. threads/{00000000-00009999 β†’ 00000001-00010000}/296726821.txt +0 -0
  42. threads/{00000000-00009999 β†’ 00000001-00010000}/296726929.txt +0 -0
  43. threads/{00000000-00009999 β†’ 00000001-00010000}/296726997.txt +0 -0
  44. threads/{00000000-00009999 β†’ 00000001-00010000}/296727629.txt +0 -0
  45. threads/{00000000-00009999 β†’ 00000001-00010000}/296727723.txt +0 -0
  46. threads/{00000000-00009999 β†’ 00000001-00010000}/296727785.txt +0 -0
  47. threads/{00000000-00009999 β†’ 00000001-00010000}/296727858.txt +0 -0
  48. threads/{00000000-00009999 β†’ 00000001-00010000}/296728039.txt +0 -0
  49. threads/{00000000-00009999 β†’ 00000001-00010000}/296728285.txt +0 -0
  50. threads/{00000000-00009999 β†’ 00000001-00010000}/296728496.txt +0 -0
count.sh ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ echo Number of threads in the 'threads' folder: $(tree threads | tail -n 1 | cut -d ' ' -f3)
4
+
5
+ for folder in threads/*; do
6
+ suffix=$(echo $folder | cut -d '/' -f 2)
7
+ echo " In folder $suffix: $(ls $folder | wc -l) ($(cat index.tsv | grep $suffix | wc -l) are found in index.tsv)"
8
+ done
9
+
10
+ n_rows_in_index=$(cat index.tsv | wc -l)
11
+ echo Number of threads in the 'index.tsv' file: $((n_rows_in_index - 1))
index.tsv CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d8b01d67415724383d0ead820e6cb605320bdae8b08d38a867e553b4b79e0cc5
3
- size 136893467
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:879688c48449e27ef6f611ecc05cf3f958fe6ba5053682507e8c4c9a948a045c
3
+ size 396248749
threads/{00000000-00009999 β†’ 00000001-00010000}/266160769.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296462434.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296578420.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296584018.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296633170.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296641798.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296652710.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296655454.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296684917.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296686194.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296690534.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296694799.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296701814.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296703942.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296704244.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296708334.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296708902.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296709125.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296709863.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296710490.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296711684.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296712137.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296712954.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296713148.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296716491.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296718438.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296719086.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296720332.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296721573.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296721746.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296722844.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296724545.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296724696.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296725117.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296725594.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296726523.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296726586.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296726617.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296726821.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296726929.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296726997.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296727629.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296727723.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296727785.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296727858.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296728039.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296728285.txt RENAMED
File without changes
threads/{00000000-00009999 β†’ 00000001-00010000}/296728496.txt RENAMED
File without changes