mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 14:34:05 +00:00
4 lines
163 B
Fish
4 lines
163 B
Fish
function __fish_print_lsblk_columns --description 'Print available lsblk columns'
|
|
lsblk --help | sed '1,/Available columns:/d; /^$/,$d; s/^\s\+//; s/\s/\t/'
|
|
|
|
end
|