Please decode in English


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Please decode in English
# 1  
Old 07-16-2002
Please decode in English

Hello: Can anyone please decode this script in English. I have also made some comments which I know.. The actual script does not have one comment also..

#! /bin/ksh

. odbmsprd_env.ksh #setting the env..

echo $0 Started at : `date '+%d-%m-%Y %H:%M:%S'`
# what's echo $0

curdt=`date '+%Y%m%d%H%M%S'`

file=rpt
# why file=rpt

#what's $# ==3 -- I know we pass 3 parameters to the script and 3rd param is file name and 1st is startdate and 2nd is enddate.

if (( $# == 3 ))
then
echo arguments: $1 $2 $3
sql @rcvdata_p.sql $1 $2
file=$3
fi

# We are calling sql scripts to do some processing.
sql @rcvstmt3_p.sql
sql @rcvrep_p.sql

# We are checking number of lines in the file pur_jur.csv
lns=`cat pur_jur.csv|wc -l`

# If we have lines in the file, then do processing
if (( $lns > 0 ))
then
echo $lns records found in PURCHASE JOURNAL
# Debug into english the next line
sed 's/ //g' pur_jur.csv|sed 's/,//g'|sed 's/|/,/g' > pur_jur1.csv
# I understand the rest of the program
mv pur_jur1.csv pur_jur_"$file".csv
ftp_to_q_pnet.ksh pur_jur_"$file".csv
compress pur_jur_"$file".csv
mv /home/odbms/prod/cg_batch/purchase_journal/pur_jur_"$file".csv.Z /dataload/odbms/dataout/pur_jur_"$file".$curdt.csv.Z
else
echo No records found for Purchase Journal
rm pur_jur.csv
fi

echo $0 ended at : `date '+%d-%m-%Y %H:%M:%S'`
# 2  
Old 07-16-2002
echo $0 will display the script's name


if (( $# == 3 ))

this asks "is the number of arguments = 3?"?


sed 's/ //g' pur_jur.csv|sed 's/,//g'|sed 's/|/,/g' > pur_jur1.csv

Take the file called pur_jur.ssv and make some changes:
1. Remove all spaces
2. Remove all commas
3. Change any | to a comma
Call the resulting file jur_jur1.csv
# 3  
Old 07-16-2002
Thanks Perderabo for your response..

Just Two more Qns..

What is $0 ??
I know $1 is 1st parameter and so on..

Why is variable "file"=rpt ??

Please explain..

Thanks, ST2000
# 4  
Old 07-16-2002
$0 is the name of the script. Suppose I type a command like this:

somescript option filename

You seem to know that $1 will be "option" and $2 will be "filename". You need to accept that $0 will be "somescript" as well.

As for:
file=rpt

This creates a variable named file and sets it equal to "rpt". You can see references to $file in a line like:
mv pur_jur1.csv pur_jur_"$file".csv

That will become
mv pur_jur1.csv pur_jur_rpt.csv
# 5  
Old 07-16-2002
Great man.. Thx a lot again

ST2000
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Decode a file

hi i have this file : <?xml version="1.0" encoding="UTF-8"?> <OnDemand xmlns="http://xsd.telecomitalia.it/Schema/crmws.entity.OnDemand" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xsd.telecomitalia.it/Schema/crmws.entity.OnDemand... (2 Replies)
Discussion started by: Francesco_IT
2 Replies

2. UNIX for Dummies Questions & Answers

What does this command do? and how to decode all other lines

Hello, I have an encoded file and I wish to see what is written inside. The first line is given below: eval "$(dd if=$0 bs=1 skip=69 2>/dev/null|gpg -d 2>/dev/null)"; exit PS: When I google above code, it says that command is use for encryption... Following lines include many strange... (2 Replies)
Discussion started by: baris35
2 Replies

3. Shell Programming and Scripting

How to decode text files?

HI experts....I am trying to decode some text files... I need little help from you people...file is of mixed type...from generated from windows based system my text files looks like this... 2.AUBZ 158 1 11 116204310 6 N 7542 E 18 02846 52833 102821 152815 ... (9 Replies)
Discussion started by: Akshay Hegde
9 Replies

4. AIX

How to decompile or decode an executable?

I have a file type of: executable (RISC System/6000 V3.1) or obj module not stripped How can I decode it? I know that this may be somewhat involved, but if you could steer me in the right direction, I would appreciate it. Thanks! (2 Replies)
Discussion started by: gg48gg
2 Replies

5. Linux

Decode the statement!!

What will the below statement do ?:confused: && { && {eval `/bin/setup 1`} || && { VAR="/tmp" } export $VAR; } (3 Replies)
Discussion started by: krishnaux
3 Replies

6. UNIX for Advanced & Expert Users

How to decode nfs file handle in HP-UX?

Hi Experts, Any idea how to decode file handle in HP-UX? I am getting the following error continously in my HP-UX 11.31 box :mad: Apr 26 07:15:00 host62 su: + tty?? root-bb Apr 26 07:15:00 host62 su: + tty?? root-abcadm Apr 26 07:15:01 host62 vmunix: NFS write error on host peq9vs:... (1 Reply)
Discussion started by: vipinable
1 Replies

7. Programming

How to Decode an image using openGL

Hi, How to decode an image using openGL library libjpeg .. which are the steps needed to do this using C language.. actually my work is to decode the image, store it on the buffer, and place it on cube surface.. please guide me,,any answer will appreciated .. (8 Replies)
Discussion started by: Ravikishore
8 Replies

8. Programming

Help to decode in perl script

Hi, I am having a file in below stucture: header { subheader1 { field1 : value field2 : value field3: value } //end of subheader1 subheader2 { subheader3 { field4 : value field5 : value field6: value } subheader4 (6 Replies)
Discussion started by: kallol
6 Replies

9. Shell Programming and Scripting

auto decode a value to different value

Okay, This is not something I've tried to do before, but what I want (need) to do is when a value is read in it gets changed to the value needed. I've been given a list of ids that I need to check against the ids I have in my system, but as is the case we don't have the same naming convention... (2 Replies)
Discussion started by: nhatch
2 Replies

10. Shell Programming and Scripting

Decode email

In pine email, when you receive an email with an attachment, the content of the attachment is incoded (content-transfer-encoding: base64). I am trying to write a shell script that will read the mail file, and it will save the attachment of an email to a directory. I want to do this by reading... (6 Replies)
Discussion started by: mskarica
6 Replies
Login or Register to Ask a Question