fix(bash): pipe ls with colors to less for lll

This commit is contained in:
Victor Westerlund 2025-12-21 11:38:58 +01:00
parent ee7749c200
commit c77f2a7e3e
Signed by: vlw
GPG key ID: D0AD730E1057DFC6

View file

@ -90,7 +90,7 @@ lll () {
return 1
fi
ls -lah $target | less
ls -lah --color=always $target | less -R
}
.. () {