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 is helpful for shell scripts, I use it in my custom php install script to schedule to delete the build files in 3 hours, as the php install script is completely automated and is made to run slow.
Does require at, which some environments without crontab still do have.
You can add as many commands to the at you want. Here's how I delete them in case the script gets killed. (trapped)
atq |awk '{print $1}'|xargs -iJ atrm J &>/dev/null
There is 1 alternative - vote for the best!
doesn't require "at", change the "2h" to whatever you want... (deafult unit for sleep is seconds)
If you can do better, submit your command here.
You must be signed in to comment.
You don't need nohup for at-jobs, and you don't need do redirect STDIN and STDERR either (will be sent by mail to the user that starts the job)
What's up with the double redirection? So it seems like the shorter version would be:
echo "rm -rf /phpsessions" | at now + 3 hoursecho overload!
echo overload! (attempt #2 :-)
<<< "rm -rf /phpsessions" at now + 3 hoursecho "nohup rm -rf /garbage/ 1>&2 &>/dev/null 1>&2 &>/dev/null&" | at now + 3 hours 1>&2 &>/dev/nullecho "nohup rm -rf ~/g 1>&2 &>/dev/null 1>&2 &>/dev/null&" | at now + 1 minute