fish-shell/share/functions/__fish_print_windows_drives.fish
EmilySeville7cfg 78bd0f9cdb Prettify all commands:
- rename *list* functions to *print*
- use short options everywhere
- delegate less work to functions
2022-01-26 21:37:39 -08:00

4 lines
116 B
Fish

function __fish_print_windows_drives --description 'Print Windows drives'
wmic logicaldisk get name | tail +2
end