mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 02:27:28 +08:00
7 lines
182 B
Fish
7 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
|