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:
Here we instead show a more real figure for how much free RAM you have when taking into consideration buffers that can be freed if needed.
Unix machines leave data in memory but marked it free to overwrite, so using the first line from the "free" command will mostly give you back a reading showing you are almost out of memory, but in fact you are not, as the system can free up memory as soon as it is needed.
I just noticed the free command is not on my OpenBSD box.
There are 6 alternatives - vote for the best!
This will show the amount of physical RAM that is left unused by the system.
If you can do better, submit your command here.
You must be signed in to comment.
The free manpage says :
If the -o option is not specified, free subtracts buffer memory from the used memory and adds it to the free memory reported.
Unix software on unix machines are often made by smart people. Just read the man page.
CodSpirit, I like your thinking, but not having the desired effect here on a CentOS 5.3 box:
root@om012234 ~ $free -mtotal used free shared buffers cachedMem: 8004 5660 2343 0 68 1639-/+ buffers/cache: 3953 4050Swap: 996 0 995root@om012234 ~ $free -mototal used free shared buffers cachedMem: 8004 5647 2356 0 68 1639Swap: 996 0 9953953 is the figure we are after. Omitting the -o switch gives us that.
Rather 4050 for RAM free. 3953 is RAM used.