mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:12:50 +08:00
7 lines
144 B
Fish
7 lines
144 B
Fish
#
|
|
# These are very common and useful
|
|
#
|
|
function ll --wraps ls --description "List contents of directory using long format"
|
|
ls -lh $argv
|
|
end
|