if loop help needed


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting if loop help needed
# 1  
Old 07-13-2009
if loop help needed

Dear All,

Please help me out for the below query

Code:
echo 'please input file type (i.e file1,file2,file3,file4): '
read a
cat hello.wri | grep $a | wc -l > temp1.wri
cat hello.wri | grep $a | wc -l > temp2.wri
cat hello.wri | grep $a | wc -l > temp3.wri
cat hello.wri | grep $a | wc -l > temp4.wri

now the query is that it depends upon user, which filetype wil he use (i.e. file1,file2,file3,file4)
i want that if subscriber write file3
than only temp3.wri should be created and the rest command should be skipped and no files for temp1.wri,temp2.wri
temp4.wri should be generated. only files for temp3.wri should be generated
as per my understanding, (if) loop will be used


please advice
# 2  
Old 07-13-2009
If it is a college assignment... Not allowed here ...
Code:
echo 'please input file type (i.e file1,file2,file3,file4): '
read a
i=`echo $a | cut -c5-`
cat hello.wri | grep $a | wc -l > temp"$i".wri

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Expect Scripting Loop Argument Desperately Needed!

I am trying to create an Expect script that does the following: 1) Telnets to an IP address and logs in with user ID and Password 2) Issue a CLI command to the server that will output data of which I am particularly interested in a DS1 clock 'Slips' value. I want to be able to keep issuing... (0 Replies)
Discussion started by: dwightlaidler
0 Replies

2. Shell Programming and Scripting

Alternative to the loop is needed

I have a file containing ids like this (file1): c9e2c3c6c100000000460000c02000803c63e529c3f5f5f0 c9e2c3c6c100000000460000c02002813c63e539c3f5f5f0 c9e2c3c6c100000000460000c02002ee3c63ebb1c3f5f5f4 c9e2c3c6c100000000460000c020042f3c63e549c3f5f5f0 These ids are present in muiltiple files named:... (4 Replies)
Discussion started by: niladri29
4 Replies

3. Shell Programming and Scripting

Help needed: Adding columns in csv file in loop

Hi Everyone: My shell script creates multiple csv files (~30) in for loop. I want to compile (or merge) 3rd column from each (all) of these files to another file (in loop). Please help. Thanks. (3 Replies)
Discussion started by: smap007
3 Replies

4. UNIX for Advanced & Expert Users

'for' loop advice needed....!!

Scenario: Command used to capture IPs on a host: /usr/sbin/ifconfig -a | grep "inet" | egrep -v "inet6|0.0.0.0|192.168.100.2" | awk '{print $2}' Following for loop used to capture interface names: for INTERFACE in `/usr/sbin/ifconfig -a | nawk '$1 ~ /:$/ && $1 {sub(":$", "", $1); print... (3 Replies)
Discussion started by: ak835
3 Replies

5. Shell Programming and Scripting

'for' loop advice needed ....!!

/usr/sbin/ifconfig -a | grep "inet" | grep -v "inet6" | grep -v "127.0.0.1" | grep -v "0.0.0.0"|grep -v "192.168.100.2" | awk '{print $2}' I use above command to get IP addresses on AIX boxes.Values coming here are set to a variable "Host IPs.IP Addresses" in my fingerprinting engine. ... (4 Replies)
Discussion started by: ak835
4 Replies

6. Shell Programming and Scripting

While Loop Syntax help needed

Hi everyone, Can ny1 help me out regarding while loop arguments i.e. what does -gt -ge -lt -le means? actually i am new to while loops (2 Replies)
Discussion started by: jojo123
2 Replies

7. Shell Programming and Scripting

Script - Filter data - repeated loop - Help needed...

Dear Friend, I need a help for the below problem.. Can anyone suggest me to do... Input file data: rule { name=mainrule filt=pos loc { x=right + 660 y=top - 3100 } object_kind= DRAW ... (15 Replies)
Discussion started by: vasanth_vadalur
15 Replies

8. Shell Programming and Scripting

loop needed?

Hi All, thanks in advance for any help you can give me. I'm trying to get some error checking of a username in my shell script. While I have that part under control, at the moment my script just exits if the username entered doesn't match the correct syntax. I've been googling to try and... (4 Replies)
Discussion started by: adarii
4 Replies

9. UNIX for Dummies Questions & Answers

For loop help needed

Hi there, i want to direct the out put return from the FOR loop statement to any log file. code copied below. for file in `ls *.in` do ... ... done if there is no file then i need to write the log to one file. Thanks Arun (3 Replies)
Discussion started by: arund_01
3 Replies

10. Shell Programming and Scripting

NEED HELP PLZ! While Loop script needed!

PLZ Help us. I need to write a "while loop" script in borne shell to go into the /tmp directory every second and update me with the size of every file in the temp directory. My boss sprung this on me today and I have to have the script done by tomorrow. I can't loose my job, cause my wife and I... (1 Reply)
Discussion started by: scoobydoo
1 Replies
Login or Register to Ask a Question