mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
6 lines
182 B
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
|