mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
7492b6cdb3
darcs-hash:20070116012918-ac50b-c1c0df64333ad910ca81dbc86ad193ece6680722.gz
7 lines
169 B
Fish
7 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
|
|
|