UNIX shell scripting logic


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting UNIX shell scripting logic
# 15  
Old 02-01-2017
Quote:
Originally Posted by RavinderSingh13
Code:
awk -F'[=|:-]'      ##### Setting field separator as = OR :-

Hi Ravinder,
Note that:
Code:
awk -F'[=|:-]'

sets four field separator characters =, |, :, and -. Each of those characters are matched by the ERE bracket matching expression containing those four characters. If you want to use the two strings = and :- as field separators, leave off the brackets:
Code:
awk -F'=|:-'

which specifies an ERE containing two alternatives with the | separating the alternatives.
This User Gave Thanks to Don Cragun For This Post:
# 16  
Old 02-01-2017
Quote:
Originally Posted by RudiC
Please keep in mind that the desired output is
Code:
vamsi,123456789,abc@gmail.com,india
vamsi1,1234567890,abc1@gmail.com,usa

Thanks for reminding. I do, but this would be achieved by the subsequent paste. In my comment, I just rewrote three commands of the pipe (cat/grep/grep) into a single one. Applying this to the whole solution - given the other comments on this topic - is trivial.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix Shell Scripting

I'm sorry if this doesn't go here, but I'm in depserate need of help with my last unix homework. Anyways, I'm taking summer classes, and one of them is UNIX. I've understood everything thus far, but I'm having a killer time with how my instructor has worded the problems for shell scripting. I... (3 Replies)
Discussion started by: dw15
3 Replies

2. UNIX for Dummies Questions & Answers

Unix Shell Scripting( Calling from Unix to PLSQL)

Hello Experts, I have the following questions to be discussed here at this esteemed discussion forum. I have two Excel sheets which contain Unix Commands llike creating directory the structure/ftp/Copy/Zip etc to basically create an environment. I need help in understanding some of... (1 Reply)
Discussion started by: faizsaadq
1 Replies

3. Shell Programming and Scripting

Unix shell scripting help

Hi , I am beginner in Unix. I have a string /aa/bb/cc/dd. I want to extract the sub string /aa/bb/cc from this . How do i do that in bash? (1 Reply)
Discussion started by: vignesh53
1 Replies

4. Shell Programming and Scripting

unix shell scripting

hi experts, i m a btech student......my mini project is making a secure unix shell which is intented to stop mal practice in educational environment...........in other words need to create a new shell in which commands like cp do not work....can anyone suggest me how to begin with it....refrence... (3 Replies)
Discussion started by: vikas MENON.S
3 Replies

5. Shell Programming and Scripting

Need logic for shell scripting

I am comfortable with shell scripting. I need a better logic for below, I've a reference file, to take the parameter value. For example in the no of channel is 6 i have get the commands as written below. I need need a differenct logic to extract the commands. NO_OF_CHANNEL=6 case... (3 Replies)
Discussion started by: ilugopal
3 Replies

6. Shell Programming and Scripting

Unix Shell Scripting

I 'm new to unix shell scripting can some one guide me to any e-book or link from where i can learn unix shell scripting .. i want to learn create interactive scripts for my day to day solaris work. Any help would be appreciated (1 Reply)
Discussion started by: fugitive
1 Replies

7. Shell Programming and Scripting

Shell Scripting (Unix)

Hello Guys, Pls wot command can i use to veiw the configuration and usage of the Unix file systems T.T (3 Replies)
Discussion started by: tt1ect
3 Replies

8. Shell Programming and Scripting

Unix shell scripting

Hi, we are writing this fields dynamically retrieved from database and writing into the file. $bmpRec = $bmpRec.'|'.$cust_id; # sp4 $bmpRec = $bmpRec.'|'.$serv_id; # sp5 $bmpRec = $bmpRec.'|'.$site_id; # sp6 $bmpRec = $bmpRec.'|'.$loc_id; # sp7 ... (4 Replies)
Discussion started by: Maruthi Kunnuru
4 Replies

9. Shell Programming and Scripting

difference between AIX shell scripting and Unix shell scripting.

please give the difference between AIX shell scripting and Unix shell scripting. (2 Replies)
Discussion started by: haroonec
2 Replies

10. Shell Programming and Scripting

Parent/Child Scripting logic Question

I have Parent script that will execute a child script. The child script will take about 2 hours to run and I wanted to somehow build a logic for parent.sh to wait and perform ps -ef|grep cp|grep -v on the child.sh cp process and loop and check return code of child.sh $? as well. Once they are both... (3 Replies)
Discussion started by: jigarlakhani
3 Replies
Login or Register to Ask a Question