aboutsummaryrefslogtreecommitdiffstats
path: root/fish2024/functions/ll.fish
blob: e14aeeaa5bc857b264d9febd7f65118aafbc5441 (plain) (blame)
1
2
3
4
function ll --wraps='ls -larth' --description 'alias ll=ls -larth'
  ls -larth $argv
        
end