On Sat, 2007-03-31 at 22:38 -0500, dwain wrote: > I'm trying to copy an .icc profile from my home directory to the Adobe > Icc Profiles/RGB Profiles directory. I su in the console then cp -t > /home/my directory/file directory/file.icc/ > /usr/share/color/icc/Adobe_ICC_Profiles/RGB_Profiles/. > > The result is that the .icc file does not exist. What am I doing > incorrectly? How do I need to write the command? >
Remove the slash after file.icc aqnd if the . is part of your cp command, remove that to. If the source directory have spaces in it, you need to escape them. In other words; cp -t /home/my\ directory/file.icc directory/file.icc /usr/share/color/icc/Adobe_ICC_Profiles/RGB_Profiles/ > Dwain Cheers, Magnus -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
