Skip to content

Instantly share code, notes, and snippets.

@glitchracer
glitchracer / progressbar.sh
Last active April 10, 2020 11:03
bash snippets
#!/bin/bash
progressbar()
{
echo "THIS MAY TAKE A WHILE, PLEASE BE PATIENT WHILE ______ IS RUNNING..."
printf "["
# While process is running...
while kill -0 $PID 2> /dev/null; do
printf "▓"
sleep 1