commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
This command will find the biggest files recursively under a certain directory, no matter if they are too many. If you try the regular commands ("find -type f -exec ls -laSr {} +" or "find -type f -print0 | xargs -0 ls -laSr") the sorting won't be correct because of command line arguments limit.
This command won't use command line arguments to sort the files and will display the sorted list correctly.
There are 6 alternatives - vote for the best!
A different approach to the problem - maintain a small sorted list, print the largest as we go, then the top 10 at the end. I often find that the find and sort take a long time, and the large file might appear near the start of the find. By printing as we go, I get better feedback. The sort used in this will be much slower on perls older than 5.8.
If you can do better, submit your command here.
You must be signed in to comment.
the sort manpage is a little cryptic, but you can sort on fields other than the beginning of the line (similar to cut):
find . -type f -ls | sort -n --key=7Pipe that to "cut -b68-" to get only the filenames.
I thought about "find -ls" before but it is bad because the file name isn't always at the same position, depending on the owner/group/size/time/date strings length. The time/date length changes for some specific locales.
agreed! Another shoddy way is to pipe into "awk '{print $11}' " or some such to get the filenames, but they still have to be quoted or null-separated. However, I think you can get rid of cut and tr if you modify the -printf format string:
find . -type f -printf '%s\t"%p"\n' | sort -n | cut -f2 | xargs ls -laSthe tab is for cut and the quotes for xargs. Another option: on a single fs, use inode numbers to avoid messy filenames.
The 'cut' could not be avoided in that command and the 'tr' is to handle filenames with spaces correctly, although filenames with '\n' (which are *much* harder to be found) will be missed.
I see, here's maybe even a shorter version. Have you seen the -print0 option to find?
find -type f -print0 | xargs -0 ls -la | sort -nr --key=5this handles ANY type of filename even those with newlines and spaces.