mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 16:37:34 +00:00
5 lines
163 B
Fish
5 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
|