blob: 1d2a838c9efb7b37e77f7247f0e1ba4d0e77550f (
plain) (
tree)
|
|
# Defined in /tmp/fish.5hRdP2/get-all-installed-packages-debian.fish @ line 1
function get-all-installed-packages-debian --description Get\ all\ the\ packages\ I\'ve\ installed\ on\ Debian
dpkg --get-selections | grep -w 'install$'
end
|