Skip to content

Instantly share code, notes, and snippets.

View Templum's full-sized avatar
💭

Simon Templum

💭
View GitHub Profile
@Templum
Templum / progress_bar_snippet.sh
Created March 21, 2023 15:41
Shell Progressbar Snippet
#!/bin/sh
bar_size=60
bar_char_done="#"
bar_char_todo="-"
bar_percentage_scale=2
function show_progress {
current="$1"
total="$2"