The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Help Required: Command to find IP address and command executed of a user loggedout Security 2 08-06-2008 05:12 PM
how to? launch command with string of command line options TinCanFury Shell Programming and Scripting 5 04-28-2008 03:06 PM
inconsistent ls command display at the command prompt & running as a cron job rajranibl Linux 5 07-30-2007 05:26 AM
How to use more than one MPE command STREAM with Unix command in a single shell? bosskr HP-UX 1 10-16-2006 01:16 PM
How to use more than one MPE command STREAM with Unix command in a single shell? bosskr Shell Programming and Scripting 0 09-19-2006 06:44 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 07-29-2008
ffpradella's Avatar
Registered User
 

Join Date: Jun 2008
Location: Sao Paulo - Brazil
Posts: 36
Cool cp command

hi folks..

I am trying the following command in a solaris box:

Quote:
$ pwd
/u02/fpradell/siebel78/swse/public
$ cd enu
$ cp -R * /u02/fpradell/siebel78/swse/public/eng
however after some time I'm getting errors like that:

Quote:
cp: /u02/fpradell/siebel78/swse/public/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/e
nu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu/enu: File nam
e too long
Any ideas what could be wrong?
Reply With Quote
Forum Sponsor
  #2  
Old 07-29-2008
Smiling Dragon's Avatar
Disorganised User
 
Join Date: Nov 2007
Location: New Zealand
Posts: 734
Post

I would guess that you have a symlink in there that points to itself - cp does not copy the symlink, it instead creates a new version of the file or directory.

To get a more accurate copy, try tar:
Code:
cd /u02/fpradell/siebel78/swse/public
cd enu
tar cf - . | (cd ../eng ; tar xf -)
or
Code:
cd /u02/fpradell/siebel78/swse/public
cd enu
tar cf - . | "cd ../eng ; tar xf -"
(depends on your shell)
You also may need to user tar -cf - instead of tar cf - depending on your version of tar.
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 08:57 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0