Question about unix

2003-09-12 Thread roland . skoldblom
Hallo everyone,

I have a unix question, hope you can help me. Maybe this is too simple but would 
appreciate any help.

I would like to rename the files 
konkurrenter.txt.1,konkurrenter.txt.,,konkurrenter.txt.3 to be renamed to 
konkurrenter.txt at the same time.
So the result would be 3 files, every one of them would be named konkurrenter.txt

cp konkurrenter.txt.* konkurrenter.txt


Hope anyone could help me.


Roland


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  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: Question about unix

2003-09-12 Thread Stephane Faroult
If konkurrenter means competitor, they have nothing to fear.

- --- Original Message --- -
From: [EMAIL PROTECTED]
To: Multiple recipients of list ORACLE-L
[EMAIL PROTECTED]
Sent: Fri, 12 Sep 2003 03:59:25

Hallo everyone,

I have a unix question, hope you can help me. Maybe
this is too simple but would appreciate any help.

I would like to rename the files
So the result would be 3 files, every one of them
would be named konkurrenter.txt

cp konkurrenter.txt.* konkurrenter.txt


Hope anyone could help me.


Roland

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephane Faroult
  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: Question about unix

2003-09-12 Thread Mladen Gogala
3 different files, having the same name in the same directory? Only
Microsoft 
can do that, but only if you buy enterprise wide license for Windows,
Exchange and SQL*Server.

--
Mladen Gogala
Oracle DBA 



 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On 
 Behalf Of [EMAIL PROTECTED]
 Sent: Friday, September 12, 2003 7:59 AM
 To: Multiple recipients of list ORACLE-L
 Subject: Question about unix
 
 
 Hallo everyone,
 
 I have a unix question, hope you can help me. Maybe this is 
 too simple but would appreciate any help.
 
 I would like to rename the files 
 konkurrenter.txt.1,konkurrenter.txt.,,konkurrenter.txt.3 to 
 be renamed to konkurrenter.txt at the same time. So the 
 result would be 3 files, every one of them would be named 
 konkurrenter.txt
 
 cp konkurrenter.txt.* konkurrenter.txt
 
 
 Hope anyone could help me.
 
 
 Roland
 
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 -- 
 Author: 
   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).
 




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: Question about unix

2003-09-12 Thread Brian Dunbar
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] on Friday,
September 12, 2003 6:59 AM

 Hallo everyone,

 I have a unix question, hope you can help me. Maybe this is too simple but
would appreciate any help.

 I would like to rename the files
konkurrenter.txt.1,konkurrenter.txt.,,konkurrenter.txt.3 to be 
 renamed to konkurrenter.txt at the same time.
 So the result would be 3 files, every one of them would be named
konkurrenter.txt

 cp konkurrenter.txt.* konkurrenter.txt


 Hope anyone could help me.

I'll take a stab at it.

If you want 3 files to be renamed 3 seperate files, with identical names,
you'll need to park them in seperate subdirectories.

cp file1 /dir1/filenew
cp file1 /dir2/filenew
cp file3 /dir3/filenew


Assuming that I have misunderstood your query, you can concatenate 3 files
into one

cat file1 file2 file3  filenew

I must be missing something ...

Brian
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Brian Dunbar
  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: Question about unix

2003-09-12 Thread Brian Dunbar
Mladen Gogala [mailto:[EMAIL PROTECTED] on Friday, September 12, 2003
9:19 AM said;

 3 different files, having the same name in the same directory? Only
 Microsoft 
 can do that, but only if you buy enterprise wide license for Windows,
 Exchange and SQL*Server.

(blink) is that an example of subtle humour?  Maybe I need to get some more
coffee ...

~brian
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Brian Dunbar
  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: Question about unix

2003-09-12 Thread Mercadante, Thomas F
Mladen is losing patience with all questions simple.


-Original Message-
Sent: Friday, September 12, 2003 11:24 AM
To: Multiple recipients of list ORACLE-L


Mladen Gogala [mailto:[EMAIL PROTECTED] on Friday, September 12, 2003
9:19 AM said;

 3 different files, having the same name in the same directory? Only
 Microsoft 
 can do that, but only if you buy enterprise wide license for Windows,
 Exchange and SQL*Server.

(blink) is that an example of subtle humour?  Maybe I need to get some more
coffee ...

~brian
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Brian Dunbar
  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: Mercadante, Thomas F
  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: Question about unix

2003-09-12 Thread Mladen Gogala
Coffe is always good. Have one for me as well.

--
Mladen Gogala
Oracle DBA 



 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On 
 Behalf Of Brian Dunbar
 Sent: Friday, September 12, 2003 11:24 AM
 To: Multiple recipients of list ORACLE-L
 Subject: RE: Question about unix
 
 
 Mladen Gogala [mailto:[EMAIL PROTECTED] on Friday, 
 September 12, 2003 9:19 AM said;
 
  3 different files, having the same name in the same directory? Only 
  Microsoft can do that, but only if you buy enterprise wide 
 license 
  for Windows, Exchange and SQL*Server.
 
 (blink) is that an example of subtle humour?  Maybe I need to 
 get some more coffee ...
 
 ~brian
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 -- 
 Author: Brian Dunbar
   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).
 




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: Question about unix

2003-09-12 Thread Michael Boligan




That's only if the file ends in .DLL  :)


   
  
  Mladen Gogala  
  
  [EMAIL PROTECTED]To:   Multiple recipients of list 
ORACLE-L [EMAIL PROTECTED] 
  ng.com  cc: 
  
  Sent by: Subject:  RE: Question about unix   
  
  [EMAIL PROTECTED]
  
  .com 
  
   
  
   
  
  09/12/2003 10:19 
  
  AM   
  
  Please respond to
  
  ORACLE-L 
  
   
  
   
  




3 different files, having the same name in the same directory? Only
Microsoft
can do that, but only if you buy enterprise wide license for Windows,
Exchange and SQL*Server.

--
Mladen Gogala
Oracle DBA



 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
 Behalf Of [EMAIL PROTECTED]
 Sent: Friday, September 12, 2003 7:59 AM
 To: Multiple recipients of list ORACLE-L
 Subject: Question about unix


 Hallo everyone,

 I have a unix question, hope you can help me. Maybe this is
 too simple but would appreciate any help.

 I would like to rename the files
 konkurrenter.txt.1,konkurrenter.txt.,,konkurrenter.txt.3 to
 be renamed to konkurrenter.txt at the same time. So the
 result would be 3 files, every one of them would be named
 konkurrenter.txt

 cp konkurrenter.txt.* konkurrenter.txt


 Hope anyone could help me.


 Roland


 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 --
 Author:
   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).





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

Re: Question about unix

2003-09-12 Thread Reginald . W . Bailey

You can combine the files  into one file, but Unix is like any other
operating system: file names must be unique.  In VMS, the OS would use
versioning on the file name. In UNIX and other OSes, it doesn't happen like
that.  Your syntax will combine all the files into one file.

RWB



Reginald W. Bailey
IBM Global Services - ETS SW GDSD - Database Management
Your Friendly Neighborhood DBA
713-216-7703 (Office) 281-798-5474 (Mobile) 713-415-5410 (Pager)
[EMAIL PROTECTED]
[EMAIL PROTECTED]



   
  
roland.skoldbl 
  
[EMAIL PROTECTED]To: [EMAIL PROTECTED] 
   
Sent by: cc:   
  
[EMAIL PROTECTED]   Subject: Question about unix   
 
ity.com
  
   
  
   
  
09/12/2003 
  
06:59 AM   
  
Please respond 
  
to ORACLE-L
  
   
  
   
  




Hallo everyone,

I have a unix question, hope you can help me. Maybe this is too simple but
would appreciate any help.

I would like to rename the files
konkurrenter.txt.1,konkurrenter.txt.,,konkurrenter.txt.3 to be renamed to
konkurrenter.txt at the same time.
So the result would be 3 files, every one of them would be named
konkurrenter.txt

cp konkurrenter.txt.* konkurrenter.txt


Hope anyone could help me.


Roland


--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author:
  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: 
  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: Question about unix

2003-09-12 Thread Tanel Poder
It's Friday evening here already. One beer for me!

:)
Tanel.

- Original Message - 
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
Sent: Friday, September 12, 2003 6:59 PM


 Coffe is always good. Have one for me as well.

 --
 Mladen Gogala
 Oracle DBA



  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
  Behalf Of Brian Dunbar
  Sent: Friday, September 12, 2003 11:24 AM
  To: Multiple recipients of list ORACLE-L
  Subject: RE: Question about unix
 
 
  Mladen Gogala [mailto:[EMAIL PROTECTED] on Friday,
  September 12, 2003 9:19 AM said;
 
   3 different files, having the same name in the same directory? Only
   Microsoft can do that, but only if you buy enterprise wide
  license
   for Windows, Exchange and SQL*Server.
 
  (blink) is that an example of subtle humour?  Maybe I need to
  get some more coffee ...
 
  ~brian
  -- 
  Please see the official ORACLE-L FAQ: http://www.orafaq.net
  -- 
  Author: Brian Dunbar
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).
 




 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).



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Tanel Poder
  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).