How to find and list hidden files in bash? [duplicate]
This question already has an answer here:
How to show only hidden files in Terminal?
12 answers
How to list only files which begin with a period character?
I want to know how this it possible with ls
, grep
and find
.
bash files hidden-files
marked as duplicate by pomsky, karel, Charles Green, Thomas, user2405 Feb 10 at 11:01
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How to show only hidden files in Terminal?
12 answers
How to list only files which begin with a period character?
I want to know how this it possible with ls
, grep
and find
.
bash files hidden-files
marked as duplicate by pomsky, karel, Charles Green, Thomas, user2405 Feb 10 at 11:01
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How to show only hidden files in Terminal?
12 answers
How to list only files which begin with a period character?
I want to know how this it possible with ls
, grep
and find
.
bash files hidden-files
This question already has an answer here:
How to show only hidden files in Terminal?
12 answers
How to list only files which begin with a period character?
I want to know how this it possible with ls
, grep
and find
.
This question already has an answer here:
How to show only hidden files in Terminal?
12 answers
bash files hidden-files
bash files hidden-files
edited Feb 9 at 8:55
dessert
25.3k673107
25.3k673107
asked Feb 9 at 7:25
FarshadFarshad
13
13
marked as duplicate by pomsky, karel, Charles Green, Thomas, user2405 Feb 10 at 11:01
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by pomsky, karel, Charles Green, Thomas, user2405 Feb 10 at 11:01
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
To see only files whose name begins with '.' just use '.*' in all commands.
Examples:
ls .*
find . -name '.*'
grep xy .*
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To see only files whose name begins with '.' just use '.*' in all commands.
Examples:
ls .*
find . -name '.*'
grep xy .*
add a comment |
To see only files whose name begins with '.' just use '.*' in all commands.
Examples:
ls .*
find . -name '.*'
grep xy .*
add a comment |
To see only files whose name begins with '.' just use '.*' in all commands.
Examples:
ls .*
find . -name '.*'
grep xy .*
To see only files whose name begins with '.' just use '.*' in all commands.
Examples:
ls .*
find . -name '.*'
grep xy .*
edited Feb 9 at 8:49
answered Feb 9 at 8:43
mucluxmuclux
3,48611131
3,48611131
add a comment |
add a comment |