mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-25 12:21:14 -03:00
8 lines
163 B
Fish
8 lines
163 B
Fish
#
|
|
# These are very common and useful
|
|
#
|
|
function la -d (N_ "List contents of directory, including hidden files in directory using long format")
|
|
ls -lah $argv
|
|
end
|
|
|