No products in the cart.
- This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
I’m trying to view the files in the linux (xubuntu) terminal (like this command: ls).
Is there a way to do it with the command grep? Thanks for helpers.
You can use recursive (-r) and only filename (-l)
grep -r . -l
You can set a directory action (-d skip) to only grep files in a directory
grep -r . -d skip -l *