mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-28 07:31:14 -03:00
6 lines
172 B
Fish
6 lines
172 B
Fish
# localization: skip(private)
|
|
function __fish_print_lpr_printers --description 'Print lpr printers'
|
|
lpstat -p 2>/dev/null | sed 's/^\S*\s\(\S*\)\s\(.*\)$/\1\t\2/'
|
|
|
|
end
|