Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # prezentacja tqdm
- #
- # info:
- # tqdm -h
- # 1
- # echo "Prosta iteracja"
- # VALUE=999999
- # seq $VALUE | tqdm --total $VALUE | wc -l
- # 2
- # źródła: man find
- echo "Progress bar przy przeszukiwaniu plików: " .$1
- find ./*.$1 -maxdepth 0 -type f | tqdm --total $(find ./* -maxdepth 0 -type f | wc -l) | wc -l
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement