Can anybody change this into Linux shell scripts?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Can anybody change this into Linux shell scripts?
# 1  
Old 03-14-2013
Can anybody change this into Linux shell scripts?

Code:
  @echo off
   
  SET "p0=%~0"
  SET "p1=%~1"
  SET "p2=%~2"
  SET "p3=%~3"
  SET "p4=%~4"
  SET "p5=%~5"
  SET "p6=%~6"
  SET "p7=%~7"
  SET "p8=%~8"
  SET "p9=%~9"
  SHIFT
  SET "p10=%~9"
  SHIFT
  SET "p11=%~9"
   
  SET "zip_path=D:\OraOutput\interco\%p10%"
   
  echo Program Name               : %p0%
  rem  echo "Next param                 : %p1%
  echo Next param                 : Username/Password
  echo User Id                    : %p2%
  echo User Name                  : %p3%
  echo Request ID                 : %p4%
  echo File Name                  : %p5%
  echo Entity Name                : %p6%
  echo Email Address              : %p7%
  echo Extract ID                 : %p8%
  echo path name                  : %p9%
  echo share directory            : %p10%
  echo Master Request ID          : %p11%
   
  rm !(D:\temp\XX.txt)
   
  echo Process and Mail Output files
  echo %zip_path%
  IF NOT EXIST D:\OraOutput\interco\%p10%\out\%p11%\ GOTO MAPERROR
  cd D:\OraOutput\interco\%p10%\out\%p11%\
  echo changed to D:\OraOutput\interco\%p10%\out\%p11%\
  IF EXIST D:\OraOutput\interco\%p10%\out\%p11%\chello_compressed_interco_files.zip rm D:\OraOutput\interco\%p10%\out\%p11%\chello_compressed_interco_files.zip
  zip -j D:\OraOutput\interco\%p10%\out\%p11%\chello_compressed_interco_files.zip D:\OraOutput\interco\%p10%\out\%p11%\*.*
  echo after zip
  IF NOT EXIST D:\OraOutput\interco\%p10%\out\%p11%\chello_compressed_interco_files.zip GOTO ENDPROCESS
  echo zip file exists after zip
  REM         rm D:\OraOutput\interco\%p10%\chello_interco*.*
  echo Before Mail to %p7%
  D:\OraOutput\interco\es.exe %p7% "Chello Interco Extract has completed" "Please find attached the compressed Intercompany spreadsheets" D:\OraOutput\interco\%p10%\out\%p11%\chello_compressed_interco_files.zip
  echo After Mail to %p7%
  rm D:\OraOutput\interco\%p10%\out\%p11%\chello_compressed_interco_files.zip
  GOTO ENDPROCESS
  :MAPERROR
  echo The Share Directory has not been mapped Contact your System Administrator
  EXIT -1
  :ENDPROCESS
  echo Process finished goodbye

# 2  
Old 03-14-2013
What have you tried so far?
# 3  
Old 03-14-2013
post is deleted

Last edited by monisha; 03-25-2013 at 02:27 AM..
# 4  
Old 03-14-2013
A couple things:
Code:
# This is wrong. The space alters the meaning into 'set DATAFILE blank and run the program /OraOutput/interco/'.
DATAFILE= /OraOutput/interco/
DATAFILE1= /OraOutput

# Do this instead:

DATAFILE=/OraOutput/interco
DATAFILE1/OraOutput

# Why are you exporting all these when you could have just used ${1} instead of ${p1} anyway?
 
export p0=$name
export p1=$1
export p2=$2
export p3=$3
export p4=$4
export p5=$5
export p6=$6
export p7=$7
export p8=$8
export p9=$9
# The reason you had to 'shift' here is because
# variables 10 and higher need to be enclosed like ${10} or it will assume you wanted $1.
# It's a good habit to do that for all variables really.
export p10=${10}
export p11=${11}
export "zip_path=$DATAFILE1"
 
# Do NOT put $ for 'read'.  It takes a variable NAME, not a variable VALUE.
read -r -p "Program Name :" p0
# echo "Next param :" p1
read -r -p "Next Param User name :" Username
read -r -p "Next Param Password :" Password
read -r -p "User Id :" p2
read -r -p "User Name :" p3
read -r -p "Request ID :" p4
read -r -p "File Name :" p5
read -r -p "Entity Name :" p6
read -r -p "Email Address :" p7
read -r -p "Extract ID :" p8
read -r -p "path name :" p9
read -r -p "share directory :" p10
read -r -p "Master Request ID :" p11
 
echo "Process and Mail Output files"
echo "$zip_path"

if [ ! -d "$DATAFILE" ] && [ ! -d "$DATAFILE1" ];
then
echo "The Share Directory has not been mapped Contact your System Administrator"
else
cd "$DATAFILE"
echo "changed to datafile"
fi
if [ -e "$DATAFILE/chello_compressed_interco_files.zip" ];
then
# *.* is a DOS thing.
# * doesn't expand outside quotes.
zip -j "chello_compressed_interco_files.zip" $DATAFILE/*
else
echo "after zip"
fi

# -d is for directories.  Use -e to check if a file exists.
if [ ! -e "chello_compressed_interco_files.zip" ];
then 
echo "Process finished goodbye"
else
echo "zip file exists after zip"
# rm "$DATAFILE1"
echo "Before Mail to $p7"
fi

# .exe files are a Windows thing.  If this isn't Windows, you can't run them.
"$DATAFILE/es.exe" $p7 "Chello Interco Extract has completed" "Please find attached the compressed Intercompany spreadsheets" "chello_compressed_interco_files.zip"
echo "After Mail to $p7"
echo "Process finished goodbye"

# 5  
Old 03-19-2013
hi

i tried its ending into error...can u pls provide me a new code for the orginal file
# 6  
Old 03-19-2013
Ending in what error?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Change indentation in scripts

Hi, I am a professional in writing shell scripts, and I am using a one-space indentation like this for i in file1 file2 do if then echo "$i" fi done so very deeply nested stuff still fits on my screen. At release time I usually double the indentation via sed 's/^ */&&/' to make... (8 Replies)
Discussion started by: MadeInGermany
8 Replies

2. Shell Programming and Scripting

Shell script to change the password on multiple servers in linux

Can any one please let me know the shell script to change the password for a particular user on multiple linux servers. (2 Replies)
Discussion started by: s_madras
2 Replies

3. UNIX for Advanced & Expert Users

What files or programs have the ability to change your default network scripts and config

What files or programs have the ability to change your default network scripts and config files? All 3 of these very important files got changed on their own. /etc/sysconfig/network-scripts/ifcfg-wlan0 /etc/sysconfig/networking/devices/ifcfg-wlan0... (4 Replies)
Discussion started by: cokedude
4 Replies

4. Shell Programming and Scripting

Shell scripts migration from HP-Unix 11 to Red Hat Linux

We are changing our OS from HP-Unix 11 to Linux Red Hat. We have few k- shell, c - shell and sql scripts which are currently running under HP-Unix 11. Will these scripts work on LINUX as it is? or we need to do any code changes?IS there anyone who have done this kind of migration before?Thanks for... (2 Replies)
Discussion started by: Phoenix2
2 Replies

5. Shell Programming and Scripting

shell scripts for linux SLES 10

Hi, could someone help me to create the following scripts Need to create couple of shell scripts on LINUX SLES 10 Using my id --------------- First script – this script should contain su and should take input <process name> 1 -login using my id and then sudo to... (1 Reply)
Discussion started by: lookinginfo
1 Replies

6. Shell Programming and Scripting

how to change default shell in linux?

currently the default shell in my linux enviornemnt is ksh. how to change the default shell to bash? thanks! (8 Replies)
Discussion started by: princelinux
8 Replies

7. Shell Programming and Scripting

Scripts fails if you change its code during the execution.

So a script is working properly (tested many times) , then you add a new fine piece of code ,finaly its fails generally with a syntax error at the last line of the script. :confused:... does anybody why this happens? >uname -a HP-UX test... (4 Replies)
Discussion started by: Klashxx
4 Replies

8. Shell Programming and Scripting

How to make the same change in multiple shell scripts?

I would like to make the same change in multiple shell script files and would like to know if anyone can be of some help? I would appreciate it. (4 Replies)
Discussion started by: rdakhan
4 Replies

9. Shell Programming and Scripting

find all scripts to change DNS name??

hi, we are going for a new unix box and the ip and DNS name has to be changed in all the scripts, where ever it is hard coded. i was trying the below mentioned command to list all such scripts where the ip/dns name is hard coded: find / -type f -print | xargs grep -l "ip address" >>... (0 Replies)
Discussion started by: Bhups
0 Replies

10. AIX

Difference between writing Unix Shell script and AIX Shell Scripts

Hi, Please give me the detailed Differences between writing Unix Shell script and AIX Shell Scripts. Thanks in advance..... (0 Replies)
Discussion started by: haroonec
0 Replies
Login or Register to Ask a Question