Skip to content

Instantly share code, notes, and snippets.

View TaylanTatli's full-sized avatar
👋

Taylan Tatlı TaylanTatli

👋
View GitHub Profile
@TaylanTatli
TaylanTatli / portainer_progressbar.sh
Created March 29, 2026 15:31
Progressbar script for portainer
#!/usr/bin/env bash
sudo -v || exit 1
# Portainer PID
PID=$(pgrep portainer)
if [ -z "$PID" ]; then
echo "❌ Error: Portainer is not running..."
exit 1
fi