mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-30 23:51:15 -03:00
8 lines
124 B
Fish
8 lines
124 B
Fish
#
|
|
# These are very common and useful
|
|
#
|
|
function ll -d (_ "List contents of directory using long format")
|
|
ls -lh $argv
|
|
end
|
|
|