
find:ai:77038
find . -maxdepth 1 -type d -ls | sort -k8M -k9n -k10n -k11Vf
$ find . -maxdepth 1 -type d -ls | sort -k8M -k9n -k10n -k11Vf
try on your machine
This command will find all directories in the current directory, list them with detailed information, and then sort them by month, day, year, and time in a JSON format.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- find . -maxdepth 1 -type d -ls | sort -k8M -k9n -k10n -k11Vf?