I found this great progress bar: Great Example
How can I implement this progress bar when curl running and do sort and unique etc on really big file (60GB) taking about ~ 3 hours.
Example: count="$(awk '{print $1}' $FILE_NAME | sort -T /diskXX --parallel=$PARALLEL | uniq | wc -l)"
Thanks! Guy