RE: How to add ' (comma) at the begining and end of each line? Ei

2003-10-16 Thread Ron Thomas

Let's not forget about ed

ed your_file < -Original Message-
>
> Hi List
>
> I have 1000 lines in my data file. I want to add
> '(comma) at the begining and end of each line.
>
> For example,
>
> abf
> jd
> djkhk
> jd3
>
> Shold be convrted to
>
> 'abf',
> 'jd',
> 'djkhk',
> 'jd3',
>
> Any help will be really appreciated.
>
> Thanks
> Sami
>
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Stephen Lee
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ron Thomas
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: How to add ' (comma) at the begining and end of each line? Ei

2003-10-16 Thread Jared Still

Open the file in vi, run the following command:

%s/^\(.*\)$/\'\1\',/

On Thu, 2003-10-16 at 07:54, Khedr, Waleed wrote:
> small C, java, Perl, etc program can get it done quickly.
> 
> -Original Message-
> Sent: Thursday, October 16, 2003 10:20 AM
> To: Multiple recipients of list ORACLE-L
> Either Unix or Windows
> 
> 
> Hi List
> 
> I have 1000 lines in my data file. I want to add
> '(comma) at the begining and end of each line.
> 
> For example,
> 
> abf
> jd
> djkhk
> jd3
> 
> Shold be convrted to
> 
> 'abf',
> 'jd',
> 'djkhk',
> 'jd3',
> 
> Any help will be really appreciated.
> 
> Thanks
> Sami
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Oracle DBA
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Khedr, Waleed
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Jared Still
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: How to add ' (comma) at the begining and end of each line? Ei

2003-10-16 Thread Mladen Gogala
I'll refrain from answering. My non-rtfm answer would neither be sed  
nor awk. If I responded , my response would be something like:
#!/usr/bin/perl -w
while (<>) {
  s/^/'/;
  s/$/'/;
  print;
}



On 10/16/2003 11:04:40 AM, Stephen Lee wrote:
Since there has been an AWK reply, there should be a SED reply too.
(Perl?  What's Perl?)
sed "s/^/'/; s/\$/'/" your_file

sed 's/^/'\''/; s/$/'\''/' your_file

> -Original Message-
>
> Hi List
>
> I have 1000 lines in my data file. I want to add
> '(comma) at the begining and end of each line.
>
> For example,
>
> abf
> jd
> djkhk
> jd3
>
> Shold be convrted to
>
> 'abf',
> 'jd',
> 'djkhk',
> 'jd3',
>
> Any help will be really appreciated.
>
> Thanks
> Sami
>
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Stephen Lee
  INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Mladen Gogala
Oracle DBA


Note:
This message is for the named person's use only.  It may contain confidential, 
proprietary or legally privileged information.  No confidentiality or privilege is 
waived or lost by any mistransmission.  If you receive this message in error, please 
immediately delete it and all copies of it from your system, destroy any hard copies 
of it and notify the sender.  You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. Wang Trading LLC and any of its subsidiaries each reserve the right to 
monitor all e-mail communications through its networks.
Any views expressed in this message are those of the individual sender, except where 
the message states otherwise and the sender is authorized to state them to be the 
views of any such entity.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Mladen Gogala
 INET: [EMAIL PROTECTED]
Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: How to add ' (comma) at the begining and end of each line? Ei

2003-10-16 Thread Gints Plivna
Or text editor that can work with columns
Or MSExcel 


> -Original Message-
> From: Khedr, Waleed [mailto:[EMAIL PROTECTED]
> Sent: Thursday, October 16, 2003 5:55 PM
> To: Multiple recipients of list ORACLE-L
> Subject: RE: How to add ' (comma) at the begining and end of each
line? Ei
> 
> small C, java, Perl, etc program can get it done quickly.
> 
> -Original Message-
> Sent: Thursday, October 16, 2003 10:20 AM
> To: Multiple recipients of list ORACLE-L
> Either Unix or Windows
> 
> 
> Hi List
> 
> I have 1000 lines in my data file. I want to add
> '(comma) at the begining and end of each line.
> 
> For example,
> 
> abf
> jd
> djkhk
> jd3
> 
> Shold be convrted to
> 
> 'abf',
> 'jd',
> 'djkhk',
> 'jd3',
> 
> Any help will be really appreciated.
> 
> Thanks
> Sami
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Oracle DBA
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Khedr, Waleed
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Gints Plivna
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: How to add ' (comma) at the begining and end of each line? Ei

2003-10-16 Thread Robson, Peter
Hmmm - we call that symbol a 'quote' (and I have used quotes to quote quote,
if you follow... )

Various ways - if your data is in a text file - use an edit macro

If it is a field in an Oracle table which you are extracting to a file - try
this:

select * (other fields) , ''''||data_field||'''', ***etc   from table;

peter


> -Original Message-
> From: Khedr, Waleed [mailto:[EMAIL PROTECTED]
> Sent: Thursday, October 16, 2003 3:55 PM
> To: Multiple recipients of list ORACLE-L
> Subject: RE: How to add ' (comma) at the begining and end of 
> each line?
> Ei
> 
> 
> small C, java, Perl, etc program can get it done quickly.
> 
> -Original Message-
> Sent: Thursday, October 16, 2003 10:20 AM
> To: Multiple recipients of list ORACLE-L
> Either Unix or Windows
> 
> 
> Hi List
> 
> I have 1000 lines in my data file. I want to add
> '(comma) at the begining and end of each line.
> 
> For example,
> 
> abf
> jd
> djkhk
> jd3
> 
> Shold be convrted to
> 
> 'abf',
> 'jd',
> 'djkhk',
> 'jd3',
> 
> Any help will be really appreciated.
> 
> Thanks
> Sami
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Oracle DBA
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> -- 
> Author: Khedr, Waleed
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- 858-538-5051 http://www.fatcity.com
> San Diego, California-- Mailing list and web hosting services
> -
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
> 


*
This  e-mail  message,  and  any  files  transmitted  with  it, are
confidential  and intended  solely for the  use of the  addressee. If
this message was not addressed to  you, you have received it in error
and any  copying,  distribution  or  other use  of any part  of it is
strictly prohibited. Any views or opinions presented are solely those
of the sender and do not necessarily represent  those of the British
Geological  Survey. The  security of e-mail  communication  cannot be
guaranteed and the BGS accepts no liability  for claims arising as a
result of the use of this medium to  transmit messages from or to the
BGS. .http://www.bgs.ac.uk
*

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Robson, Peter
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: How to add ' (comma) at the begining and end of each line? Ei

2003-10-16 Thread Stephen Lee

Since there has been an AWK reply, there should be a SED reply too.
(Perl?  What's Perl?)

sed "s/^/'/; s/\$/'/" your_file

sed 's/^/'\''/; s/$/'\''/' your_file


> -Original Message-
> 
> Hi List
> 
> I have 1000 lines in my data file. I want to add
> '(comma) at the begining and end of each line.
> 
> For example,
> 
> abf
> jd
> djkhk
> jd3
> 
> Shold be convrted to
> 
> 'abf',
> 'jd',
> 'djkhk',
> 'jd3',
> 
> Any help will be really appreciated.
> 
> Thanks
> Sami
> 
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephen Lee
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: How to add ' (comma) at the begining and end of each line? Ei

2003-10-16 Thread Stephen Lee
Oh, and I almost forgot a ksh example
(Perl?  What's Perl?)

cat your_file | while read LINE; do echo "'$LINE'"; done

Or

while read LINE; do echo "'$LINE'"; done < your_file

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephen Lee
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: How to add ' (comma) at the begining and end of each line? Ei

2003-10-16 Thread Khedr, Waleed
small C, java, Perl, etc program can get it done quickly.

-Original Message-
Sent: Thursday, October 16, 2003 10:20 AM
To: Multiple recipients of list ORACLE-L
Either Unix or Windows


Hi List

I have 1000 lines in my data file. I want to add
'(comma) at the begining and end of each line.

For example,

abf
jd
djkhk
jd3

Shold be convrted to

'abf',
'jd',
'djkhk',
'jd3',

Any help will be really appreciated.

Thanks
Sami

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Oracle DBA
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Khedr, Waleed
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).