Hi all,
In my shell script, I am reading some files, processing them, and writing the out-put in the log files. The out put contains number of rows in the file etc.
I want to fetch the input files from a particular directory and I want to write the logs in a particular directory with a particular name..
eg..
Input files will be fetched from /workplace/inputfiles/
logs will be writte to /workplace/logs/
The names of the input files will be input1.txt, input2.txt..
Name of the log files will be logs1.log, logs2.log..
I don't want to hardcode the paths for the input files and logs in my shell script.
Can somebody tell me whether I can use something like INI files in windows for these initializations??
Thanks
VEN