Read from a file in unix(Continue from previous thread)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Read from a file in unix(Continue from previous thread)
# 8  
Old 10-16-2012
Quote:
Originally Posted by parthmittal2007
I have posted up
If there is no xyz present in test file how it can print that...????

assuming you have only single file


Code:
 file_name="$1" 
var="$2"

awk -F "=" -v VM="$var" -v FN="$file_name" '{if($1 ~ FN){s=1}
if(s && $1 == VM){print $2;s=""}}' file


Last edited by pamu; 10-16-2012 at 04:07 PM..
# 9  
Old 10-16-2012
Now my Question is If suppose the file is like
Code:
[test]
status=running
username=abc
password=123456
server =  linux

[live]
status=running
username=xyz
password=09876
server=unix

The script fails here when I write ./script test server

---------- Post updated at 02:58 PM ---------- Previous update was at 02:54 PM ----------

If there is space in between server = linux the scripts fails, But the script should give the result and the last case is If i have commented the portion
for example #server=linux
then the script should consider this one
# 10  
Old 10-16-2012
Error How to use mail

Hi Guys..

Am trying to use mail command to send mail.. But its not working in our LAN. I cant able to send any mail to other localhost.. But i can send and receive mail in my own machine.. Help me ASAP!!Smilie
# 11  
Old 10-16-2012
Quote:
Originally Posted by Adhi
Hi Guys..

Am trying to use mail command to send mail.. But its not working in our LAN. I cant able to send any mail to other localhost.. But i can send and receive mail in my own machine.. Help me ASAP!!Smilie
This is not the right thread to post your queries. Please create the new one
# 12  
Old 10-16-2012
Quote:
Originally Posted by parthmittal2007
This is not the right thread to post your queries. Please create the new one
Where i can post.. I can not able to do that.. Can you post the Link for the new post??Smilie
# 13  
Old 10-16-2012
@Adhi, click on:

UNIX for Dummies Questions & Answers - The UNIX and Linux Forums

Then click the big button that says:

Image
These 2 Users Gave Thanks to Scott For This Post:
# 14  
Old 10-17-2012
Quote:
Originally Posted by parthmittal2007
If there is space in between server = linux the scripts fails, But the script should give the result and the last case is If i have commented the portion
for example #server=linux
then the script should consider this one
Try this..

Code:
file_name="$1" 
var="$2"

awk -F "[= ]" -v VM="$var" -v FN="$file_name" '$0 ~ FN{s=1}
s && $1 ~ VM {s="";if(NF==2){print $NF}}' file

Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Solaris

Rebooting Windows machine leads to continue sync reset on UNIX

Hello, We have Windows 10 machine connected to Sparc T5440 server via serial cable. We access the server from the Windows 10 machine using putty via serial connection. This allows us to access ILOM and Unix. We have recently noticed that whenever we reboot the windows machine (Windows 10),... (11 Replies)
Discussion started by: jasonu
11 Replies

2. UNIX for Dummies Questions & Answers

AIX UNIX - script on how to extract from log file with previous date

Hello, I am new to this forum so any assistance would help. I am currently trying to develop a script that extract all data from a log file with has the previous day's date. $ <root@aixtest3> /var/log > more sudo.log May 13 10:52:10 aixtest3 local2:notice sudo: tbrath : TTY=unknown ; ... (14 Replies)
Discussion started by: Kslew82
14 Replies

3. UNIX for Advanced & Expert Users

How to find a string in a line in UNIX file and delete that line and previous 3 lines ?

Hi , i have a file with data as below.This is same file. But actual file contains to many rows. i want to search for a string "Field 039 00" and delete that line and previous 3 lines in that file.. Can some body suggested me how can i do using either sed or awk command ? Field 004... (7 Replies)
Discussion started by: vadlamudy
7 Replies

4. Shell Programming and Scripting

Read column values from previous and next line using awk

Hi, I have a csv file which contains data that looks something like this: Key1 Key2 Key3 New_Key1 New_Key2 New_Key3 102 30 0 - - - 102 40 1 30 40 50 102 50 2 40 50 ... (4 Replies)
Discussion started by: Nishi_Licious
4 Replies

5. Post Here to Contact Site Administrators and Moderators

Gud to read u r Thread

Hi Neo , I was searching for Unix Certifications on Google and got u r thread: "unix-certification-most-needed-these-days.html" It was a gr8 read. Nice to know ur thoughts.. I m also a newbie to this Unix world and had a gr8 interst in it. I m learning shell scripting and other basics. Would... (2 Replies)
Discussion started by: paras.oriental
2 Replies

6. Solaris

How can I output all previous Unix commands in Solaris to a file??

Hello friends: I login to solaris with a username/Password and I can see quite a lot of previous I use dbefore, it accumulates a lot, I hope to output them into a Command.txt file as reference, not copy/paste 1 by 1, is there any way I can collect all commands in batch then put into a file, ... (3 Replies)
Discussion started by: sunnysunnysunny
3 Replies

7. UNIX for Dummies Questions & Answers

UNIX command to skip any warning messages and continue job execution

Hello All, Good day! This is my first UNIX post. :D Anyways, I would like to seek help from you guys if you know of any UNIX command that will skip a warning message once it is encountered but continue to run the execution. Ok here's the situation in general: An encypted file is sent to... (2 Replies)
Discussion started by: jennah_rekka
2 Replies

8. Programming

How to implement read/write thread

How to implement read/write thread. This has to implemented at server side ar at client side? (1 Reply)
Discussion started by: shilpi_gup
1 Replies
Login or Register to Ask a Question