Skip to content

Instantly share code, notes, and snippets.

View LukeSavefrogs's full-sized avatar
💭
Thinking about what to script next

Luca Salvarani LukeSavefrogs

💭
Thinking about what to script next
View GitHub Profile
@LukeSavefrogs
LukeSavefrogs / progress-bar.sh
Last active January 2, 2022 02:27 — forked from F1LT3R/progress-bar.sh
Bash Progress Bar
#!/bin/bash
# Bash Progress Bar: https://gist.github.com/F1LT3R/fa7f102b08a514f2c535
# Function to draw progress bar
progressBar () {
local __message="";
local -i __current=0 __total=100;
local -i __progress_bar_width=50;
local -i __highlight_items=0 __highlighted=0;