oh-my-fish/pkg/omf/cli/omf_list_local_packages.fish
2015-08-27 00:20:13 +09:00

7 lines
202 B
Fish

# List all custom packages and packages installed from the registry.
function omf_list_local_packages
for item in (basename {$OMF_PATH,$OMF_CUSTOM}/pkg/*)
test $item = wa; or echo $item
end
end