Well, this feels weird!
Well, this feels weird!
Find Out The Top 10 Memory Consuming Process # ps -auxf | sort -nr -k 4 | head -10 Find Out top 10 CPU Consuming Process # ps -auxf | sort -nr -k 3 | head -10
Since I always forget it: setxkbmap “us,el” -variant “,extended” -option “grp:alt_shift_toggle” This will change the english and greek layout in any linux distribution by pressing alt and shift. eof
svn status | grep ‘?’ | grep -v ‘.class’ | xargs svn add and this is why I love linux. (or unix since I’m currently developing on a macbook pro)
I’m mostly working on remove servers using console text editors. My favorite is vim and I love the syntax highlighting feature. (Quick tip: vim /etc/vim/vimrc add the following lines: if has(“syntax”) syntax on endif ) One other usefull feature I adore is the code formatter feature: Just type [esc] =G and vim will format the [...]