mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
7659554dea
This removes the use of caret redirections from share/completions and share/functions, in preparation for dropping support in fish.
5 lines
143 B
Fish
5 lines
143 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
|