-
-
Notifications
You must be signed in to change notification settings - Fork 815
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a -l flag for listing more details about the files. #491
Comments
Thank you for your feedback.
All of this can be solved by using
|
I tried |
I certainly don't want to add However, I would first like to leave this for discussion. A possible counter-argument is that we would have to choose a particular set of command-line options for |
If the argument against adding As for |
Add a new `-l`/`--list` option to show more details about the search results. This is basically an alias for `--exec-batch ls -l` with some additional `ls` options. This can be used in order to: * see metadata like permissions, owner, file size, modification times (#491) * see symlink targets (#482) * achieve a determinstic output order (#324, #196, #159) * avoid duplicate search results when multiple search paths are given (#405)
Add a new `-l`/`--list` option to show more details about the search results. This is basically an alias for `--exec-batch ls -l` with some additional `ls` options. This can be used in order to: * see metadata like permissions, owner, file size, modification times (#491) * see symlink targets (#482) * achieve a deterministic output order (#324, #196, #159) * avoid duplicate search results when multiple search paths are given (#405)
Add a new `-l`/`--list` option to show more details about the search results. This is basically an alias for `--exec-batch ls -l` with some additional `ls` options. This can be used in order to: * see metadata like permissions, owner, file size, modification times (#491) * see symlink targets (#482) * achieve a deterministic output order (#324, #196, #159) * avoid duplicate search results when multiple search paths are given (#405)
This has been implemented in #556. |
This has now been released in fd v8.0. |
fd is great for listing the files that match some pattern, but if I want to know more details about those files (eg permissions, size, owner, modification date) I need to run them through
ls
orexa
.fd pattern -x ls -l
isn't such a great experience though: it isn't colored, the order is random, and the columns don't align if the file sizes aren't similar. Given that-l
is the most common flag tols
, why not also support it infd
?The text was updated successfully, but these errors were encountered: