> In Windows/ReactOS one would type:
> dir .txt /s
> In Unix/Linux this is a top answer:
> find ./ -type f -name ".txt"
FYI, bash 4 / zsh allow:
ls /.txt
One thing that is often missed about first time unix users is that despite of the often obscure and often inconsistent flag syntax, the real power comes from the ability to combine commands and constructs:
rm /.txt
or find ./ -type f -name ".txt" | xargs rm
(if you don't remember that find has an -exec flag)
> In Windows/ReactOS one would type: > dir .txt /s > In Unix/Linux this is a top answer: > find ./ -type f -name ".txt"
FYI, bash 4 / zsh allow:
ls /.txt
One thing that is often missed about first time unix users is that despite of the often obscure and often inconsistent flag syntax, the real power comes from the ability to combine commands and constructs:
rm /.txt
or find ./ -type f -name ".txt" | xargs rm (if you don't remember that find has an -exec flag)