Ubuntu Commands that developer should know
Basic commands cp <source-file> <destination-file> Copies the file scp <source-file> <destination-file> Copies file from one host machine to another host machine. mv...
View ArticleJava Class file search in Jar files.
We often need to search for java class file in given jar files to make sure that the class is present. Or sometimes it may happened that you reference the class in your java code but while compilation...
View ArticleCommand to truncate large log file
We often need command to truncate large log files while working on production server. I have listed few of the commands which are really handy in such case. The command below is the smallest one and...
View ArticleHow to merge two text files?
Often need arises to merge text files. Recently even I encounter similar situation where I had to merge the two JMeter csv result file for some analysis. It took a little while to figure it out. This...
View ArticleCommand history with date entry
Most of us know that history command on Ubuntu shows the list of previously executed commands. This command is really handy either to examine the previously executed command or re-execute the previous...
View Article