2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-23 02:05:07 +00:00
fish-shell/share/functions/la.fish

6 lines
182 B
Fish

#
# These are very common and useful
#
function la --wraps ls --description "List contents of directory, including hidden files in directory using long format"
ls -lah $argv
end