mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 21:03:12 +00:00
4 lines
142 B
Fish
4 lines
142 B
Fish
function __fish_print_lpr_printers --description 'Print lpr printers'
|
|
lpstat -p 2>/dev/null | sed 's/^\S*\s\(\S*\)\s\(.*\)$/\1\t\2/'
|
|
|
|
end
|