June 6, 20233 yr Hello is there a way to get a list of files in a folder that contains other folders with files (a complete list of all the files that are in the folders) and then get it arranged by file size?
June 6, 20233 yr find . -ls|sort -nk 7,7 or if you want the biggest files first find . -ls|sort -rnk 7,7 Edited June 7, 20233 yr by uek2wooF forgot the -n
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.