4 lines
137 B
Bash
4 lines
137 B
Bash
#!/bin/sh
|
|
|
|
podman ps -a --format '{{.Names}} \t{{.Status}}' | awk '{print "\033[1;33m"$1"\033[0m" "\t\t\t" "\033[1;34m"$2"\033[0m"}'
|