Browse Source

Change letters to uppercase

Yevhen Zvieriev 1 year ago
parent
commit
854dc9c6df
1 changed files with 1 additions and 2 deletions
  1. 1 2
      compose/bin/docker-stats

+ 1 - 2
compose/bin/docker-stats

@@ -8,7 +8,7 @@ trap 'stty echo; exit' INT EXIT
 
 print_header() {
     echo "+----------------------------------------------------+--------------+----------+----------+----------------+"
-    printf "| %-50s | %-12s | %-8s | %-8s | %-14s |\n" "NAME" "CONTAINER ID" "CPU %" "Memory %" "Memory Usage"
+    printf "| %-50s | %-12s | %-8s | %-8s | %-14s |\n" "NAME" "CONTAINER ID" "CPU %" "MEM %" "MEM USAGE"
     echo "+----------------------------------------------------+--------------+----------+----------+----------------+"
 }
 
@@ -41,4 +41,3 @@ while true; do
 
     sleep $INTERVAL
 done
-