You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to implement a search directory that includes the directory itself.
For example, using find can operate
find ./ -type d
will list all directories under the current directory (including the directory itself), but fd cannot.
The operation steps are as follows
Fd - td '.' ./
This operation only lists all subdirectories under the current directory and does not include itself. How to solve this problem
The text was updated successfully, but these errors were encountered:
How to implement a search directory that includes the directory itself.
For example, using find can operate
find ./ -type d
will list all directories under the current directory (including the directory itself), but fd cannot.
The operation steps are as follows
Fd - td '.' ./
This operation only lists all subdirectories under the current directory and does not include itself. How to solve this problem
The text was updated successfully, but these errors were encountered: