Tag Archives for tips and tricks
Exporting blogs from blogspot to wordpress.
While exporting my blogs from blogspot using the Tools->import of WordPress. I was getting “HTTP/1.0 403 Invalid AuthSub token” error. So, I used blogger2wordpress tool to convert my older blogs to wordpress format and import it as wordpress blogs.
How do log every thing printed on the terminal
Sometimes we just keep working on a terminal and get lost what all we did.Isn’t it good if we can get some kind of logs which can give us all steps we followed. First thing which comes in mind is … Continue reading
Deleting a speical character file
Sometimes we need to delete a special character file, which we can not delete with normal rm command.So here is the solution…delete it with the help inode number.$find . -inum __inode number from ls -i of the file __ -exec … Continue reading
Highlighting the searched keyword with ‘grep’.
Add following lines in the “.bashrc” file, which is in your home directory. alias grep=”grep –color” export GREP_COLOR=”1;32″ You can run either run following command to take this change in-effect $ source ~/.bashrc OR Logout and then login.