mirror of
https://github.com/nettitude/PoshC2
synced 2026-06-08 16:22:47 +00:00
12 lines
287 B
Bash
Executable File
12 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Do a full docker system prune, cleaning up all unused images & containers?"
|
|
echo "*** This includes anything none-PoshC2 related. ***"
|
|
read -p "Would you like to do a clean? y/N " -n 1 -r
|
|
echo ""
|
|
if [[ "$REPLY" =~ ^[Yy]$ ]]
|
|
then
|
|
sudo -E docker system prune -f
|
|
fi
|
|
|