Search This Blog

16 September, 2011

linux search using grep and excluding .svn folder

to search in linux using grep and excluding the hidden directory of the svn folder

grep -nr <search string> * | grep - v svn

tmux enabling mouse interaction

Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...