Scott M. Mcdermott

UNIX Systems & Network Administrator
available for contract or salaried positions

lv_list

#

lv_list_lvs ()
{
    lvs \
        --noheadings \
        -o lv_name \
    2>/dev/null
}

lv_list_lv_vgs ()
{
    lvs \
        --noheadings \
        -o lv_name,vg_name \
    2>/dev/null
}
# vim:syn=sh:ft=sh