Replies: 1 comment
-
Hi @Jorysm I tried some outputs and the way I use it, is a bit quirky. lsd -ahl | grep -v d The lsd-Parameter -a should be used along with -l (-la).
# with the following alias set: alias ls="lsd"
# -v "^d" --> exclude by matching the first character d
ls -ahl | grep -v "^d"
# minimalistic variation
ls | grep -v /
# matching in long format the first character of . (dot)
# parameter for grep -i (inclusion)
ls -ahl | grep -i "^\." --color=always There could be a solution for the coloring, but I have no clue atm. Greetings from Hamburg, Germany |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to force lsd to show only files?
Beta Was this translation helpful? Give feedback.
All reactions