Watch Command in PowerShell

  • Linux (bash Shell)
watch kubectl get hpa

#dafault every 2 seconds 
  • PowerShell
while (1) {kubectl get hpa; sleep 5}

Discover more from naiwaen@DebuggingSoft

Subscribe to get the latest posts sent to your email.