mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-30 05:02:54 +08:00
9 lines
147 B
Bash
9 lines
147 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# updatedb
|
||
|
for disk in $(locate *.qcow2); do
|
||
|
qemu-img info "$disk" \
|
||
|
|egrep 'image|format| size|compression'
|
||
|
echo '====='
|
||
|
done
|