diff options
Diffstat (limited to '')
-rw-r--r-- | fish2024/functions/ll.fish | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fish2024/functions/ll.fish b/fish2024/functions/ll.fish new file mode 100644 index 0000000..e14aeea --- /dev/null +++ b/fish2024/functions/ll.fish @@ -0,0 +1,4 @@ +function ll --wraps='ls -larth' --description 'alias ll=ls -larth' + ls -larth $argv + +end |