cp is a UNIX command used to copy a file

learn more… | top users | synonyms

0
votes
1answer
6 views

Copy with symblic link

I have a directory which has many libraries (ex. A,B,C) and few with symbolic link to the libraries in the same directory (ex. A1, A2 and A3 are symbolic link to A). I am copying this directory from ...
0
votes
0answers
12 views

capturing copy operation via FTP client

I attempt to copy a file from a cloud machine to my local machine via ftp. I'm using a client sftp-server (like FileZilla or WinSCP). I want to know how can I intercept that copy operation? ...
0
votes
1answer
26 views

Handling spaces in a directory in bash sh

I have this line cp $(find "$directory" -type f | grep -iE '\.(c|cc|cpp|cxx)$') ~/src which searches a given directory (in this case, $directory is /home) and copies all file with the extensions of ...
0
votes
1answer
20 views

How to move files in different directories in linux (cui)

I am currently working on an exercise in the Command Line Crash Course (http://cli.learncodethehardway.org/book/ex11.html) So far I learned and understand how to copy (cp) and move (mv) directories ...
0
votes
1answer
19 views

cp copy in wxPython spaces

In a small wxPython programme I'm making I have a for loop that takes items in a list of files and copies them using cp copy. Everything is fine and works on sources without spaces in their paths. ...
0
votes
3answers
59 views

Copy Files From List Python

Im making a small python program to copy some files. My filenames are in a list "selectedList". The user has selected the source dir "self.DirFilename" and the destination dir "self.DirDest". I'm ...
0
votes
0answers
49 views

Command `xcodebuild` failing to copy

So, I'm using a set of scripts from this repo, the iOS Universal Framework template, in order to create a universal framework. This has worked up until the most recent update to Xcode 4.6.2. Now, ...
0
votes
2answers
24 views

How to display contents of directory in a file using bash

I would like to copy the file names of a directory into a spreadsheet. I don't care about the contents of the files, just the names. I'm going to use this command so that I can provide detailed ...
1
vote
0answers
49 views

Tomcat 7 BASH CP copies filename but not the file content?

I have a peculiar issue: The following BASH script worked fine under Tomcat 5. When the Tomcat 5 was upgraded to Tomcat 7, the script fails. (It may be a coincident, I don't know) The script is ...
1
vote
2answers
167 views

Shell Script: Copy directory passed as variable to another directory also as variable passed by user

SHELL SCRIPT: How can i copy a directory passed as a variable by user to another directory also as variable? I mean, the user type a source directory and the destination. So, the files into directory ...
1
vote
1answer
102 views

Copying multiple files in C

I have a problem when i try to copy multiple files in C. It copy the first file in the directory, but no more. Other files are not even open and I not know the problem. Any idea? bool ...
0
votes
1answer
67 views

cp: silence “omitting directory” warning

I'm using the command cp ./* "backup_$timestamp" in a bash script to backup all files in directory into a backup folder in a subdirectory. This works fine, but the script keeps outputting warning ...
0
votes
2answers
69 views

linux cp mtime change

I have a piece of code monitoring a folder. If a file stay there for 3 minutes, my code will process it. It depends on the mtime to tell if it has been 3 minutes from now. However, I find when I cp a ...
0
votes
1answer
148 views

cp: copy all files with a certain extension from all subdirectories

Under unix, I want to copy all files with a certain extension (all excel files) from all subdirectories to another directory. I have the following command: cp --parents `find -name \*.xls*` ...
0
votes
2answers
53 views

Having trouble compressing a file in a different directory

Okay so essentially what I'm doing, is I'm taking all the directories inside of the /servers/ folder, and moving them to a secondary hard drive mounted at /media/backupdrive/. This script is ran once ...
-1
votes
2answers
93 views

Can using cp command corrupt files transferred across different filesystems? Should I be using something like rsync instead? [closed]

I am trying to copy files from one hard drive to another in my home server using the cp command. I am copying from an NTFS-formatted partition to an ext4 partition on a new hard drive I have ...
0
votes
1answer
55 views

Move a file to other drive via Cygwin/UNIX ($ cp -R ..) [closed]

Its my first time working with cygwin so bear with me please. I need to install a processing library via cygwin in order for it to work. I followed all the steps in this tutorial and in the last step ...
0
votes
0answers
35 views

how file managers implement or execute cp operations

I am creating a fuse file system, and I am trying to implement the cp operation. The assumption is that a file name called with mknod is the file to be created. However, file managers (I'm using nemo ...
0
votes
0answers
32 views

fuse - distinguish between cp and mv call

as far as I know, fuse maps the cp and mv call to this: $cp path1 path2 getattr(path1) getattr(path2) open(path1) if(path2) exists then open(path2) truncate(path2) else mknod(path2) do: ...
0
votes
2answers
212 views

Linux: copy all files using the * wildcard that contain the word file [closed]

I've worked all night on this, but haven only solved part of the problem. I am trying to copy all files using the * wildcard that contain the word file in the filename into the work directory.
-7
votes
3answers
138 views

how do i copy folder with files to folder in linux [closed]

I am having some issues to copy files in a folder with files another folder to right dest folder can anyone help me. cp -r doesnt copy files in sub-folder
1
vote
1answer
195 views

Git bash `cp` – Exclude “protected operating system files” (and what are those?)

If I try to copy my home directory using cp in Git bash (on Windows 7), more than I want will be copied. The following is an example to demonstrate the issue. In reality I want to copy recursively, ...
-1
votes
2answers
67 views

Trying to filter the cp command [closed]

I know that you can accomplish the same thing with Rsync, but I've had difficulties with rsync ignoring extended attributes. So on to my questions: find /users/sourceuser/ ! -name '*.jpg' ! -name ...
0
votes
1answer
165 views

How to specify the files to overwrite using linux cp command on PHP?

Is it possible to tell to linux cp command wich files to overwrite via PHP? Basically, I have searched the conflits between the source and the destination folder's, asked the user what files to ...
0
votes
1answer
105 views

Using variable with cp in bash

The file returned will have spaces in the file name so I run the file name through sed to append quotes at the beginning and end. However, when I use $CF with cp it fails. If I manually echo $CF and ...
1
vote
2answers
1k views

CentOS: copy directory to another directory

i work in CentOS server. in have any folder with name 'test' in /home/server/folder/test. i need to copy directory test to /home/server/. how to ?
1
vote
1answer
57 views

How to copy a directory and ignore some directory recursively?

mac OS. I want to copy a directory named "bundleDir" which has some sub directory like ".svn". Also in directory bundleDir there are other directorys which has ".svn" the tree like this bundleDir ...
0
votes
1answer
48 views

How to copy a entire directory which contains symlinks?

I want to copy a complete directory content from /home/private_html/userx/ into the /home/private_html/usery/, the problem is that the directory userx contains few symlinks, and when using the cp it ...
-1
votes
1answer
143 views

Using a while/for loop with the 'find' command to copy files and directories

I have the follwoing problem: I want to make a script that backups a certain directory completely to another directory. I may not use cp -r or any other recursive command. So I was thinking of using a ...
1
vote
1answer
154 views

Bash — locate file, awk copy not working correctly

I'm trying to use the following to locate a file then copy the first result to the directory that is set by $dir. It works fine when I don't set a variable and use an absolute path, but that's not ...
0
votes
1answer
34 views

Why the specified classpath doesn't find the extended class?

I was messing around with classpaths etc. And there is something that I totally don't get... Let's assume we have two files in a dir structure as follows: [current dir] | org | amigo | |---A.class ...
2
votes
3answers
169 views

Linux script cp changing file name

I'm trying to make a sort of recycling bin. I have a delete function which sends the selected file to the recycling bin and adds the location of the directory it was stored in to the file. The problem ...
1
vote
1answer
104 views

Writing a big file with np.save in Python in a while True Loop

I am scraping a website with a while True loop, and then saving all of the data to a file with np.savez. I want to process the npz file, but the file updates faster than I can copy it. Here's my code: ...
0
votes
0answers
71 views

Linux colorize cp

Simple question, I hope. I prefer to use the cp command aliased to cp -i to prevent accidental clobbering of files. Is there any way to get the "Do you want to overwrite..." message to print is ...
0
votes
1answer
575 views

Shell Scripting unwanted '?' character at the end of file name

I get an unwanted '?' at the end of my file name while doing this: emplid=$(grep -a "Student ID" "$i".txt | sed 's/(Student ID: //g' | sed 's/)Tj//g' ) #gets emplid by doing a grep from some ...
0
votes
0answers
311 views

cp: cannot stat `modules/fileinfo.so': No such file or directory cp: cannot stat `modules/fileinfo.so': No such file or directory

Okay first i really dont want to cry or anything, but, after 2 days of misery i was able to install php5 on my dreamhost server thaks to their script what had lots of errors and im a totally noob with ...
1
vote
1answer
239 views

find directories with exec conditional copy & delete [closed]

What I'm trying to accomplish is moving directories from one place to another. A mv however fails when the target already exists, and therefor the delete of the source also fails. So I'm trying to use ...
1
vote
1answer
130 views

Is there any jsch ChannelSftp's function work like command 'cp'

These days,I am work with jsch-0.1.41,operate resources on a remote linux server via ChannelSftp.I find that there is no function provide the functionality similar to shell command "cp".Now I want to ...
1
vote
2answers
83 views

Bash search and copy using variables

I have a set of directories that I wish to search, ie /home/*/Documents/Crashes The files that I am trying to pull are of the form: A.log.20121022T160949Z, where the first several numbers are the ...
-1
votes
1answer
109 views

Copying files between two Unix hosts [closed]

I am running a remote ssh server from my jailbroken iPod, and once connected I have root access to its file system, however when I try to copy files from the iPod to my computer, I realize I cannot ...
-1
votes
2answers
854 views

Copy only files, not folder structure from a directory in Unix [closed]

I found this solution after googling here but I was horrified: too complicated solution. I am pretty sure some cp -versions have flags for this or just simple find will do. So how do you copy files, ...
1
vote
1answer
458 views

Linux/Cygwin recursively copy file change extension [closed]

I'm looking for a way to recursively find files with extension X (.js) and make a copy of the file in the same directory with extension Y (.ts). e.g. /foo/bar/foobar.js --> /foo/bar/foobar.js and ...
6
votes
4answers
168 views

How do I use find to copy and remove extensions keeping the same subdirectory structure [closed]

I'm trying to copy all the files from one directory to another, removing all file extensions at the same time. From directory 0001: 0001/a/1.jpg 0001/b/2.txt To directory 0002: 0002/a/1 0002/b/2 ...
0
votes
3answers
461 views

wildcard in linux cp [closed]

when I use * in cp, I think it follows the same rule as regex. so "cp temp/* test/" should copies everything over, however, when temp folder is empty it throws exception saying it cannot find file or ...
0
votes
2answers
90 views

Bash for loop issue with file name

I have a simple bash for loop and am trying to execute a command inside of it. The loop is so I can execute different file names. the files are: crystal0_cmin.pdb crystal1_cmin.pdb . . . the loop ...
0
votes
1answer
366 views

How to use FileUtils cp using directory name with spaces in Windows?

I've tried using the suggestions in this thread to no avail: How to use copyfile when there are spaces in the directory name?. To be clear, the directory I'm using is already in double-quotes, and ...
0
votes
0answers
127 views

php file handling on linux box (cp mv). Proper practice

I'm working on a Data Asset Manager and one functionality is obviously file handling. I've established a list of prerequisites for this system and was wondering if some were perhaps redundant. File ...
2
votes
1answer
304 views

Problems with issuing cp command with Popen in Python

I'm trying to copy files from one location to another using subprocess library and Popen method. When runing following script I'm getting the error cp: cannot stat /some/dev_path/*. I was told that ...
0
votes
2answers
170 views

combine unix command on exec

I use exec() to execute this a cp UNIX command: $path = "/var/www/copy_dir/"; $pp = "cp -R /var/www/top_folder/mid_folder/base_folder/".$user_id."/* ".$path; exec($pp, $ax, $ay); if($ay === ...
0
votes
1answer
282 views

Solution to error 'find: missing argument to -exec' with find -exec cp {} TARGET_DIR + [closed]

I was getting ready to post this as a question, but after fiddling around with it a little longer, I found the solution. So I thought I would go ahead and post it here in case it helps someone else. ...

1 2 3