A more helpful makefile
https://jakemccrary.com/blog/2018/12/27/a-more-helpful-makefile/- Date: 2018-12-27
Make your makefiles more useful with this helpful target.
Resize Btrfs volume:
btrfs filesystem resize /mnt -60G
Force check and resive logical volume:
e2fsck -f /dev/vg/
lvreduce --resizefs -L -60G /dev/vg/lv
Resize physical volume:
pvresize --setphysicalvolumesize 320G /dev/sda5
Grow back logical volume:
resize2fs /dev/vg/lv
Make your makefiles more useful with this helpful target.