We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
To remove veth pairs created by containerlab
# for a lab starting with clab ip l show type veth | grep clab | awk '{print $2}' | cut -d '@' -f1 | xargs -n1 ip l del
To remove containers that are in Created state:
docker ps -a | grep Created | awk '{print $1}' | xargs -n1 docker rm