mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
7 lines
152 B
Bash
7 lines
152 B
Bash
|
#!/bin/bash
|
||
|
# Checks the healt of all btrfs volumes
|
||
|
for path in $(btrfs filesystem show | awk '/ path /{print $NF}')
|
||
|
do
|
||
|
btrfs device stats $path
|
||
|
done
|