mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
5 lines
142 B
Fish
5 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
|