Linux

Archive for February, 2009

World of Goo in Window mode

Tired of the full screen in World of Goo? Try pressing Alt+Enter after the game starts to reduce it to a window. [...]


This command just made me lose $RANDOM neurons

Have a little $RANDOM fun - paste the following in your terminal session: echo “This command just made me lose $RANDOM neurons” [...]


Close any Linux terminal with one key combination

This one si a keeper. You can exit any shell or terminal application in an instant by pressing Ctrl+D. [...]


Which are your most-used Linux commands?

You can display a top 10 of your most-used Linux commands by pasting this in your console: history | awk ‘{print $2}’ | awk ‘BEGIN {FS=”|”}{print $1}’ | sort | uniq -c | sort -n | tail[...]