destroy-cell 166 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 #!/bin/bash # Destroys an LXC cell with the specified name. name=$1 cd $(dirname $0) ./destroy-node $name-mn for n in {1..3}; do ./destroy-node $name-$n done