From 98a985165bf0632f999b0e13c95819a6a9b72980 Mon Sep 17 00:00:00 2001 From: James H Date: Tue, 19 Mar 2024 12:58:09 -0400 Subject: [PATCH] Update appendix.rst Remove "&& !//" from the awk command as it causes the command to miss any of the names of any containers still running --- appendix.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appendix.rst b/appendix.rst index 48336ada..26fdf2a0 100644 --- a/appendix.rst +++ b/appendix.rst @@ -69,7 +69,7 @@ If there are any remaining docker processes, stop them (replacing ``$CONT_ID`` w This can also be done in one command: :: - sudo docker ps | awk '!/CONTAINER/&& !// { system("sudo docker stop " $1 ) }' + sudo docker ps | awk '!/CONTAINER/ { system("sudo docker stop " $1 ) }' Unmount /nsm: ::