mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-29 00:21:14 -03: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
|
|
|