How to automate user selection options in shell script?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to automate user selection options in shell script?
# 8  
Old 04-26-2013
See: Loops
example 11-15

Then bookmark the main page: Advanced Bash-Scripting Guide

Smilie
# 9  
Old 05-03-2013
below is the code i am using:
Code:
month=$1
year=$2
sid=$3
dd=`date '+%m_%d_%H_%M'`
hostname=`uname -a | awk '{print $2}' | awk -F "." '{print $1}'`

#######################################

cd  /mnt/oracle_stage_NAS/vertexR12_$1_$2
cd data
echo >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt
echo "//////////////////////////////////////////////////////////////////////////////////" >>  /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt
echo >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt

date >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt
echo " Vertex Monthly Update File version : qfpt.dat"



grep -i version qfpt.dat >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt

echo >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt
echo "//////////////////////////////////////////////////////////////////////////////////" >>  /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt
echo >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt

echo "dat file location for month $1 year $2 " >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt
pwd >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt

echo "Current Vertex Installed data update in $3 is as below:" >> /mnt/oracle_stage_NAS/vertex_$1_$2_$3.txt

cd /mnt/ora$3/apps/apps_st/appl/pay/12.0.0/vendor/quantum/utils
echo 1 > opt1.txt
diagnos < opt1.txt


Last edited by Franklin52; 05-06-2013 at 03:28 AM.. Reason: Please use code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to do user-preset login to Bash shell then automate path modification?

How do a user login with full user-environment preset to Bash shell then automatically do path modification with few script codes, either on command-line or put it in a script file. what i tried: bash --login -c PATH="/ANewPath:${PATH}" bash --login -c 'PATH="/ANewPath:${PATH}"; export PATH'... (2 Replies)
Discussion started by: abdulbadii
2 Replies

2. Shell Programming and Scripting

Automate the menu options using shell script

I have a menu option which will look as follows Select a menu option 1.change password 2.login as root user 3.show system version 4.quit Select> 1 please enter the new password: unix reenter the new password: unix press any key to enter (then displays again the menu options to enter the... (4 Replies)
Discussion started by: shivakumar6g
4 Replies

3. Shell Programming and Scripting

A selection menu in a shell script

I'm writing a shell script and have a problem with selection when I issue the command, is there a way to automatically choose a selection number one after a selection menue appear Command 1-choice 2- choice 3-choice Thanks Sara (3 Replies)
Discussion started by: Sara_84
3 Replies

4. UNIX for Advanced & Expert Users

Can we Automate the User creation and setting password through a script in solaris 10

Hi, I am using Solaris 10 OS and Bash shell.Is there any way can we automate User creation and setting passwords through a script or any freeware tool. Advance thanks for your response. (1 Reply)
Discussion started by: muraliinfy04
1 Replies

5. Shell Programming and Scripting

How to automate SSH remote connection with a shell script

Hi Guys! I am trying to write a shell script for automated ssh. vairable user and passwd have initialized correctly, but when I use the following it still prompting me for the password. #!/usr/bin/bash user='root@10.14.76.225' passwd='admin' ssh $user $passwd uptime exit I... (3 Replies)
Discussion started by: pinpe
3 Replies

6. Shell Programming and Scripting

Automate emailing via shell script

Hi, I am struggling to send my email via shell script. I can type the command in and it works pefectly: mail -s "subject" email@email.co.email < text_to_sendHowever if I try and automate it it fails. I have tried setting variables for all aspects (mail, email addr, subject, message) with no... (3 Replies)
Discussion started by: mcclunyboy
3 Replies

7. Shell Programming and Scripting

Automate CVS login using shell script

Hi, Can anyone pls help me to automate login to cvs. I basically want to login to cvs and update a file. the script always gets to the login and returns the prompt for a password. Is there any way to send the password in the script itself. Here is the script: #!/bin/ksh... (0 Replies)
Discussion started by: raghu_shekar
0 Replies

8. Shell Programming and Scripting

Automate shell script

I would like to automate script where i do not have to manually insert the username and password I wrote two different scripts but not able to achieve the results: here's to scripts i wrote #!/bin/bash cd /var/tmp /home/server/steve/pca --askauth -idx /opt/app/bin/expect <<EOF expect... (3 Replies)
Discussion started by: sam786
3 Replies

9. UNIX for Advanced & Expert Users

Shell Script to Automate

I would like to automate script where i do not have to manually insert the username and password I wrote two different scripts but not able to achieve the results: here's to scripts i wrote #!/bin/bash cd /var/tmp /home/server/steve/pca --askauth -idx /opt/app/bin/expect <<EOF expect... (1 Reply)
Discussion started by: sam786
1 Replies

10. UNIX for Advanced & Expert Users

Shell Script to Automate Package Installation

Hi, I have been asked to automate the package installation through shell script. I have 10 packages to be installed and in that 4 packages requires additional DB information(Host Name, Credentials etc) to be passed and for remaining 6 packages i need to provide the "Yes" - "No" . I have... (2 Replies)
Discussion started by: muhilan.r
2 Replies
Login or Register to Ask a Question