Tagged Questions
cp is a UNIX command used to copy a file
7
votes
4answers
9k views
what's the option for cp to create a directory if not exists?
Here is what I tried but failed:
[root@file nutch-0.9]# cp -f urls-resume /nosuchdirectory/hi.txt
cp: cannot create regular file `/nosuchdirectory/hi.txt': No such file or directory
[root@file ...
6
votes
3answers
6k views
linux: copy and create destination dir if it does not exist
Linux: I want a command (or probably an option to cp) that creates the destination directory if it does not exist.
Example:
cp -? file /path/to/copy/file/to/is/very/deep/there
4
votes
5answers
107 views
change *.foo to *.bar in unix one-liner
I am trying to convert all files in a given directory with suffix ".foo" to files containing the same basename but with suffix modified to ".bar". I am able to do this with a shell script and a for ...
3
votes
3answers
374 views
How can I make a progress bar (cp copying a directory)?
I suppose I could compare the number of files in the source directory to the number of files in the target directory as cp progresses, or perhaps do it with folder size instead? I tried to find ...
3
votes
4answers
1k views
In Linux, how to copy all the files not starting with a given string?
I tried with the following command:
cp src_folder/[!String]* dest_folder
However, this command will copy all the files that don't start with any of the characters 'S','t','r','i','n','g' instead of ...
2
votes
1answer
32 views
How to catch errors when copying files in Ruby?
I copy a file like this:
require 'fileutils'
FileUtils.copy(source_file, dest_file)
I would like to know if this operation succeeded, and if not, what was the error.
Where could I find the ...
2
votes
4answers
110 views
Linux - how to ignore cp: overwrite
Do you any one use cp command to ignore cp: overwrite? I have tried with cp -rf /zzz/zzz/* /xxx/xxx,
but still I am experiencing same overwrite promotion for each and every files and folder. looking ...
2
votes
2answers
136 views
Preserve directory tree while copying files with cp
I have about 1000 folders that I want to extract a single file from to upload to a server but I need to preserve the directory tree.
cp */myFile.txt ../newTree
Is what I basically want to do but ...
2
votes
4answers
150 views
If running cp in a perl script will files that exist be overwritten?
I have a program that will generate pixel intensity values for png images and often those images must be overwritten with new files of the same name because of some failure with the original resulting ...
2
votes
2answers
600 views
Compare 2 directories and copy differences to directory 3
I have three directories. I would like to compare directory1 with directory2, then take those changes/new files and copy them over to directory3. Is there an easy way to do this, maybe by using linux ...
1
vote
2answers
74 views
How can I use terminal to copy and rename files from multiple folders?
I have a folder called "week1", and in that folder there are about ten other folders that all contain multiple files, including one called "submit.pdf". I would like to be able to copy all of the ...
1
vote
3answers
60 views
Automatically copying dependencies from other directories with make
I have a makefile with multiple targets that are generated by copying a file from outside the working directory.
a.tex : $(wildcard /foo/work1/a.tex)
cp -p $< $@
b.tex : $(wildcard ...
1
vote
2answers
123 views
Alternative to using the linux cp command without the -n flag available? [closed]
I'm making a script in bash that requires files to be copied. I tried using the cp command with the -n flag set but I found out that on some systems the -n flag is not available.
cp: invalid option ...
1
vote
2answers
249 views
Linux cp with a regexp
I would like to copy some files in a directory, renaming the files but conserving extension. Is this possible with a simple cp, using regexp ?
For example :
cp ^myfile\.(.*) mydir/newname.$1
So i ...
1
vote
4answers
203 views
pass output as an argument for cp in bash
I'm taking a unix/linux class and we have yet to learn variables or functions. We just learned some basic utilities, some of the flags and the pipeline, output to file, append to file. On the lab ...
1
vote
3answers
184 views
Copying files in multiple subdirectories in the Linux command line
Let's say I have the following subdirectories
./a/, ./b/, ./c/, ...
That is, in my current working directory are these subdirectories a/, b/ and c/
, and in each of these subdirectories are ...
1
vote
2answers
1k views
How can I copy entire directories and exclude specific files in Unix
I have a Unix batch script that copies the contents of one directory (call it dir A) to another (call it dir B).
Here is the copy statement I have currently.
cp -urL /path/to/dir/A /path/to/dir/B
...
1
vote
1answer
119 views
Overhead of -a flag in cp command
Let's say we have a custom backup service that follows the rsync approach suggested by Mike Rubel. In order to make backup rotations, this cp command must be used:
cp -al source target
Having this, ...
1
vote
6answers
5k views
How to use 'cp' command to exclude a specific directory?
I want to copy all files in a directory except some files in a specific sub-directory.
I have noticed that 'cp' command didn't have a --exclude option.
So, how can I achieve this? Thanks!
1
vote
1answer
318 views
git-archive vs. cp
What is the advantage of using
git archive master/foo | tar -x -C ~/destination
to deploy a copy of /foo vs. just copying from the the working copy with
cp foo ~/destination/foo
So, unless for ...
1
vote
3answers
307 views
Bash: for loop, copy, backup
Hey, not 100% sure what this error means.
% for f in "*" ; do cp $f ../backup/backup$f ; done
cp: ../backup/backup* not found
The purpose is to copy all the files into a folder into a backup ...
1
vote
6answers
706 views
How to use cp from stdin?
Note:
# cat /tmp/foo - regular file
/lib/a.lib
/lib/b.lib
/lib/c.lib
/lib/d.lib
cat /tmp/foo | xargs cp /tmp/fred
cp: target /lib/d.lib is not a directory
1
vote
7answers
9k views
How to resolve /var/www copy/write permission denied?
I am a newbie in php, mysql. I have written a hello.php script, which I am trying to copy into /var/www directory (and will later want to open it through web browser). The problem with the same is ...
1
vote
4answers
3k views
How do I move/copy a symlink to a different folder as a symlink under Solaris?
It is an odd behaviour seen only on Solaris that when I try to copy a symbolic link with the "cp -R -P" command to some other folder with a different name, it copies the entire directory/file it's ...
0
votes
0answers
25 views
How do I cp the folder, not just the folder content? [migrated]
Let's say I have folder structure like this:
/parentFolder/
folder1/
folder1.1/
file1
folder2/
file2
How do I copy folder2 inside folder1.1 so that file2 is also in
...
0
votes
2answers
22 views
Bash copying specific files
tl;dr: How can I get tar/cp to copy only files that dont end in .jar and only in root and /plugins directories.
So, I'm making a Minecraft server backup script. One of the options I wish to have is a ...
0
votes
1answer
35 views
Linux copying selected files from directories and naming them after the directory name
lets say I have (linux/unix)
/directory/1/file.wmv
/directory/2/file.wmv
/directory/3/file.wmv
I want to copy these .wmv files into a single directory /example/ with files named after directory ...
0
votes
2answers
54 views
using cp command to copy one set of files to another set (with same names) without overwrite and with renaming
Say I have a bunch of files in folder A:
1.txt
2.txt
3.txt
...
And a bunch of files in folder B, with the same names.
I want to move all the files from folder B into folder A, without losing any ...
0
votes
1answer
52 views
How to use cp.exe from Cygwin and preserve permissions
I'm using cp.exe from Cygwin to copy files in Windows 7. Unfortunately, when I do the permissions of the file change.
I've tried using:
cp --preserve=all
But that doesn't work either, and when I ...
0
votes
2answers
74 views
cp command time discrepancy
Im not sure exactly what category to put this in.
I have tried to do the following with a file that is 7.7GB on my system Centos 5.5
time cp original copy
and
time cp copy copy2
The copy of the ...
0
votes
1answer
165 views
bash mkdir and cp error on variable path “cannot create directory : No such file or directory”
I'm trying to automate copying the content from a variable path (my camera) into a partially-user-defined path (desktop+date+event). The problem is that mkdir and cp complain saying that the directory ...
0
votes
2answers
31 views
Copy a whole bunch of files with their names being changed a little bit using shell script
I have a very large number of files with very similar names: row1col1.txt, row1col2.txt, row1col3.txt, row1col4.txt......
I'd like to make copies of them all and change the names to row2col1.txt, ...
0
votes
2answers
70 views
How do I use a variable containing a filename with spaces in a bash script?
I have a simple bash script running on OS X that removes specific files and directories and copies new ones in their place. One Mac .app directory contains a space, and when I run the script there is ...
0
votes
1answer
531 views
CP error (combined usage with ls and grep) - cp: cannot stat
When I do ls with grep, the result is exaxtly what I need: a list of dlls, see below:
$ ls -R | grep "dll$"
boost_chrono-vc90-gd-1_47.dll
boost_chrono-vc90-mt-gd-1_47.dll
boost_chrono-vc90-1_47.dll
...
0
votes
1answer
132 views
Use Perl to Import Contents of One File Into Another
#!/usr/bin/perl
while (true) {
#Obj: open dir, get flat-file which was exported from bteq and send to a fastload script to be loaded into dev
opendir (DIR, "C:/q2refresh/") or die "Cannot open ...
0
votes
1answer
93 views
logging unix “cp” (copy) command response
I am coping some file,So, the result can be either way.
eg:
>cp -R bin/*.ksh ../backup/
>cp bin/file.sh ../backup/bin/
When I execute above commands, its getting copied. No response from ...
0
votes
3answers
216 views
Copy or rsync command
The following command is working as expected...
cp -ur /home/abc/* /mnt/windowsabc/
Does rsync has any advantage over it? Is there a better way to keep to backup folder in sync every 24 hours?
0
votes
1answer
141 views
How to send cp a list of filenames (with spaces)
Egrep is generating for me a list of files based on their contents, but I'm doing something wrong trying to pass that list to cp as arguments. (My shell is bash). I thought I'd escape the spaces in ...
0
votes
1answer
58 views
Problem setting class path for java program
I'm in the terminal trying to set my class path. I've done it before with a program that had no packages. This one does have a package and when i try to run it i get a noclassdeffound wrong name and ...
0
votes
1answer
79 views
install command in OSX and directory structure
I need to copy a few files to another directory. The source structure is as follows
src/foo1.h
src/foo2.h
src/bar/foobar.h
I need to copy these so they end up here
/usr/include/foo/foo1.h
...
0
votes
2answers
199 views
Emulate git cp, including files with spaces in names
Yes I know that that what I want (git cp a b) approximately equal to
cp -R a b
git add b
However this adds files that aren't in the repository. The closest I have gotten is
cd a
git ls-files > ...
0
votes
1answer
79 views
cp using awked lines
var=$(pwd);diff -x .DS* -r aa bb | cut -f3,4 -d' '| sed 's/\://' | awk -v "var=$var" 'BEGIN{OFS="/"} {split($2,a,"-"); a[1]=toupper(a[1]) if ($1 ~/^bb/) {print var, $1, $2 " " var, "aa"}
else {print ...
0
votes
3answers
435 views
Copies contents from one file to another
Write a program that copies the contents from one file to another in c on linux platform(ubuntu) OR create a program which make copies of files in ubuntu
0
votes
1answer
118 views
How to emulate cp and mv --parent on osx
Osx mv and cp does not have the --parents option, so how does one emulate it ?
I.e. mv x/y/a.txt s/x/y/a.txt when s is empty gives a no directory found error unless one does a mkdir first which is ...
0
votes
4answers
414 views
How to Ensure file copy integrity in Ubuntu
In Ubuntu if a file /A/largefile.foo is moved via 'cp' or 'mv' to /B/largefile.foo, how can I ensure that the entire file is written before attempting to move the file a second time to ...
0
votes
1answer
1k views
cpio VS tar and cp
I just learned that cpio has three modes: copy-out, copy-in and pass-through.
I was wondering what are the advantages and disadvantages of cpio under copy-out and copy-in modes over tar. When is it ...
0
votes
2answers
521 views
Unix C code cp in system()
I have a C code..
i which I have following code for UNIX:
l_iRet = system( "/bin/cp -p g_acOutputLogName g_acOutPutFilePath");
when I am running the binary generated..I am getting the following ...
0
votes
1answer
2k views
Why is my Bash script adding <feff> to the beginning of files?
Greetings,
While I've gotten many answer off this site, this is my first question, and I'm kinda excited about it... :)
I've written a script that cleans up .csv files, removing some bad commas and ...
0
votes
1answer
58 views
cronned “cp *.html” is omitting new files on OSX
I have a cronned "cp *.html" command that runs every minute on an OSX box. The source files are regenerated from a database and written to the source directory just fine. The cp command usually ...
0
votes
2answers
174 views
cp command within php resulted in a partial copy
I have a small PHP script I wrote to help me push changes from staging to production. I run both staging and prod on the same server so my script copies changes from staging folders to prod folder.
...