mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 16:07:33 +00:00
6 lines
140 B
Fish
6 lines
140 B
Fish
|
function __fish_print_lpr_printers --description 'Print lpr printers'
|
||
|
lpstat -p ^ /dev/null | sed 's/^\S*\s\(\S*\)\s\(.*\)$/\1\t\2/'
|
||
|
|
||
|
|
||
|
end
|