mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-08 03:14:16 +08:00
8 lines
169 B
Fish
8 lines
169 B
Fish
#
|
|
# These are very common and useful
|
|
#
|
|
function la --description "List contents of directory, including hidden files in directory using long format"
|
|
ls -lah $argv
|
|
end
|
|
|