↧
Answer by Eliah Kagan for What does "-ls" do when used with "find"?
For each file it finds, the find command with the -ls action displays that file in a format similar to what this command would display, when you replace path with that file's path: ls -dils path This...
View ArticleWhat does "-ls" do when used with "find"?
According to man find: -ls True; list current file in ls -dils format on standard output. The block counts are of 1K blocks, unless the environment variable POSIXLY_CORRECT is set, in which case...
View Article