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.
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:
Wow, didn't really expect you to read this far down. The latest iteration of the site is in open beta. It's a gentle open beta-- not in prime-time just yet. It's being hosted over at UpGuard (link) and you are more than welcome to give it a shot. Couple things:
You can set the previous bash command as the terminal title by this command.
Explanation:
-trap assigns a command to execute at a given bash signal.
-in the $BASH_COMMAND you find the last command
-you can set the terminal title with the escape sequence: \e]0;this is the title\007
-to let the echo care about the backslashes give the -e to it
Since trap is a built in bash command you find more informatin in 'man bash'for more
Source: http://www.davidpashley.com/articles/xterm-titles-with-bash.html
There is 1 alternative - vote for the best!
Found the same command for zsh in http://www.davidpashley.com/articles/xterm-titles-with-bash.html - changed it a bit so that the behaviour is the same
Found another way, more compatible. Tested with xterm, aterm, gnome-terminal and rxvt (where it sets the window title) and guake (where it doesn't - after all, guake does not show the window title).
If you can do better, submit your command here.
You must be signed in to comment.
Holy crap, that's nice!
I've got plenty of aliases that wrap lengthy commands and give me feedback in the titlebar. Your trap combined with a PROMPT_COMMAND opens up a whole new world!
Thanks.
Doesn't seems to work when sending process in background using "&"
I don't have a problem with background tasks -- they show up as expected. However, I do see an unnecessary newline after every command. Try changing the command to use:
echo -ne
Just for fairness, I found the similar trick in zsh:
http://www.davidpashley.com/articles/xterm-titles-with-bash.html
Although for the behaviour to be really identical, I'd change the code from the above URL to:
# Last command on window title:
if [ "$SHELL" = '/bin/zsh' ]
then
case $TERM in
rxvt|*term|linux)
preexec () { print -Pn "\e]0;$1\a" }
;;
esac
fi
Yes, you are right, i found it there. I didn't want to be unfair.
I started to collect these useful scripts here. I should have mention the source, sorry!
What about bash ENV.?
does any remedy there?