Advertisement
FranzVuttke

find_ex_tqdm_demo

Apr 28th, 2023 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.33 KB | Source Code | 0 0
  1. #!/bin/bash
  2.  
  3. # prezentacja tqdm
  4. #
  5. # info:
  6. # tqdm -h
  7.  
  8.  
  9. # 1
  10. # echo "Prosta iteracja"
  11. # VALUE=999999
  12. # seq $VALUE | tqdm --total $VALUE | wc -l
  13.  
  14. # 2
  15. # źródła: man find
  16. echo "Progress bar przy przeszukiwaniu plików: " .$1
  17. find ./*.$1 -maxdepth 0 -type f | tqdm --total $(find ./* -maxdepth 0 -type f | wc -l) | wc -l
  18.  
  19.  
Tags: DEMO tqdm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement