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 helped me find a botnet that had made into my system. Of course, this is not a foolproof or guarantied way to find all of them or even most of them. But it helped me find it.
There are 2 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Great command!
Really useful, thanks!
This causes the ram memory to fill up on my machine. So I did this:
cat /var/lib/dpkg/info/*.list | egrep -v '\.(desktop|html|gz|xpm|png|jpg|svg|gif|css|xml|icon|glade|map|md5|tmpl|sample|h|c|rc|m4|mo|data2|ui)$' > /tmp/listin ; ls /proc/*/exe | xargs -l readlink | grep -xvFf /tmp/listin; rm /tmp/listinWell, I just realized how not foolproof this is. There was one more botnet whose directory name was just a space. (yeah that one " ").
Can someone come up with a much better command (full input sanitization).
Never mind my previous comment. When I was trying out again, I had missed giving the '-l' option to xargs.
Weboide: please submit your command as an alternative
This works on Arch Linux:
ls /proc/*/exe | xargs -L1 readlink | while read line; do if ! pacman -Qo "$line" > /dev/null; then echo $line; fi;