Retreiving part of a mail ID


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Retreiving part of a mail ID
# 1  
Old 07-17-2012
Retreiving part of a mail ID

Hi all,

I want to retrieve a part of the mail ID.
Im using Ksh.

The mail ID's i handle are of the type:
abc.def@ghi.com

I want the abc part alone.

Here is the code i used:
Code:
 
a=`echo $mailid |sed 's/\(.*\)..../\1/'`
echo $a

but the output i get is abc.def@ghi
I dont know how to get abc alone.

In need of help. Thanks in advance
# 2  
Old 07-17-2012
Code:
a="abc.def@ghi.com"
b=${a%%.*}
echo $b


Last edited by elixir_sinari; 07-17-2012 at 07:20 AM..
# 3  
Old 07-17-2012
@elixir sinari
Thanks a lot!!!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Matching and retreiving numbers

Hi, I have one file 1.txt with one field consist of following Ids (shortlisted 10 but showing 3 here): 00052 00184 00607 and then second file 2.txt with three fields (very big file): 00052 00184 12.73062 00052 00598 13.51205 00052 00599 13.92554 00052 00600 13.73358... (2 Replies)
Discussion started by: bioinfo
2 Replies

2. Shell Programming and Scripting

mail file part

hi, i want to send last 10 lines of a file.. How can acheive that. i tried this, but it is not working. mailx -s "$SUBJ" $MAIL_ID < $LOGFILE|tail -10 Can somebody guide me... (2 Replies)
Discussion started by: bang_dba
2 Replies

3. Shell Programming and Scripting

Help needed in retreiving records from Oracle

Hello, I am new to UNIX. My Requirement: Need to connect to Oracle database from UNIX and execute an SELECT statement and store the records in a flatfile of Comma delimiter. What I have Succeeded: I was able to connect to Oracle from UNIX. Problem: I cannot fetch multiple... (3 Replies)
Discussion started by: arunvasu2
3 Replies

4. UNIX for Dummies Questions & Answers

retreiving file name in a variable on ftp

Hi , I need to retreive the file name in an variable on the ftp server.Can you guy please let me know how can i do that.I need some thing like connect to ftp <<eof new_variable=`ls *_1_AUDIT.txt *_2_AUDIT.txt` (but on a ftp server) mget $new_variable >>eof (1 Reply)
Discussion started by: Param0073
1 Replies

5. Shell Programming and Scripting

Add color to part of the text in a mail sent from unix script

Hi, We are using KSH. I was able to write a script where a mail is sent to the concerned persons and this is working perfectly file. I need to give a different color to a part of the data in the mail which. The script written is as follows; (echo "From: $REPLY" echo "To: $DLIST" echo... (6 Replies)
Discussion started by: jmathew99
6 Replies

6. Shell Programming and Scripting

Retreiving information from a text file

Hey guys, i just started shell programming and i have a question. I am working on a simple inventory project and one of the problems which i am unable to solve would be how i am going to extract the data i need from a text file(which will be my database) and then put it inside the executable to be... (5 Replies)
Discussion started by: gregarion
5 Replies

7. UNIX for Dummies Questions & Answers

Retreiving and storing date...

First of all want to apologize for such a simple question. Very "new" to UNIX and have just taken a small intro class. I need to pull back YYYYMMDD and store it in a field to be used later. I figured out date "+%Y%m%d" returns the date in that format, just not sure how to store it. I am... (7 Replies)
Discussion started by: cards0622
7 Replies

8. UNIX for Dummies Questions & Answers

Retreiving live data

I have a stream of data come to a server and store in a file (datafile). This stream of data contain a lot of information. Data could come in every second or different frequency of times. I like to retrieve a certain text string as the data come in. All data information will come with the... (1 Reply)
Discussion started by: bobo
1 Replies

9. UNIX for Dummies Questions & Answers

Best practice for bulk multi-part mail

Hi, I am currently building a PHP/MySQL database that handles our offices newsletters. Now everything works great in the alpha with only a few names in the list, but I anticipate that once we fill it up (around 10,000) that this will not work from the PHP. I already have the script echo the... (0 Replies)
Discussion started by: begin23
0 Replies

10. UNIX for Dummies Questions & Answers

Retreiving environment variable from remote system

I am trying to write a short block of code that takes a partial filename as input from the command line, then searches multiple remote servers for any file that matches the pattern. If the pattern is found, I would like to return the value of an environment variable from the *remote* server. ... (0 Replies)
Discussion started by: bschnair
0 Replies
Login or Register to Ask a Question