mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
13 lines
163 B
Bash
13 lines
163 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
pct list
|
||
|
echo '====='
|
||
|
|
||
|
for ctr in $(pct list |grep running |awk '{print $1}'); do
|
||
|
echo "VMID $ctr"
|
||
|
lxc-info -i -n $ctr
|
||
|
echo '====='
|
||
|
done
|
||
|
|
||
|
exit;
|