On Wed, Apr 26, 2023 at 09:34:11AM +0700, Max Nikulin wrote:
> On 26/04/2023 05:02, Valentin Caracalla wrote:
> > 
> > user@host:~$ ls -dl $(find /mnt/boot/efi)
> 
> find /mnt/boot/efi -print0 | xargs -0 ls -dl --
> 
> should be more resistant to peculiar file names, but it does not matter in
> this case.

find /mnt/boot/efi -exec ls -dl {} +

Also, GNU find has a -ls action, which has a different format, but is
worth a look:

find /mnt/boot/efi -ls

Reply via email to