Joined October 2012
·

Yves Baumes

Paris, France
·
·

Posted to Get your linux distribution over 1 year ago

Usually, I do
$cat /etc/*release

But it does not work for debian systems. It seems that you would need to do:
$ cat /etc/debian_version
6.0.7

Posted to Easily check directories sizes over 1 year ago

Yeah often I use 'du -sh *'

Nice to know when writing shell script! :-) thx. By the way when using interactive bash, I use the shortcut "M-." .

Posted to Recursive find & replace with sed over 1 year ago

Usually I use something like that: `find . -exec sed -i -e 's/foo/bar/g' {} \;' . Is there some feature uncovered that your methods does?

Posted to Repeated macro over 1 year ago

You can make also C-x e one time only, then repeat the e character only two times for last two iterations.

Posted to break point in clojure over 1 year ago

I guess I really need to read the "Joy of clojure"... Nice to share that. Thnx! :-)

Achievements
54 Karma
542 Total ProTip Views