Step by Step Guide to Import Module in WinCVS

WinCVS is a graphical CVS (Concurrent Versions System) client for Windows that helps developers manage version-controlled files in a user-friendly way. This guide will walk you through…

Read More

How to Execute external commands by using perl?

There are many ways to execute external commands from Perl. The most commons are: system function exec function backticks (“) operator open function All of these methods…

Read More

How to read XML file by using shell script ?

This was like the first time where I had to write something that will be able to read something out of a XML file using a shell…

Read More

SET UNIX HOME DIR PROPERTY using ANT

Set properties HOMEDIR in build.xml which will be set through user logged in the current system.. Example: <project name=”test” default=”myhome”>     <property environment=”env”/>     <target name=”myhome”>        …

Read More