mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
6 lines
130 B
Fish
6 lines
130 B
Fish
#
|
|
# These are very common and useful
|
|
#
|
|
function ll --description "List contents of directory using long format"
|
|
ls -lh $argv
|
|
end
|