mirror of
https://github.com/neoromantique/dotfiles.git
synced 2026-03-13 21:53:20 +03:00
13 lines
169 B
Bash
Executable File
13 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Number of docker containers running
|
|
count=$(docker ps -q | wc -l | sed -r 's/^0$//g')
|
|
|
|
if [ "$count" = '' ]; then
|
|
count=0
|
|
fi
|
|
|
|
echo "🐳: $count"
|
|
|
|
|