Skip to main content
Filter by
Sorted by
Tagged with
1 vote
5 answers
187 views

Basically I am writing this to transfer all .mp3 files to my mobile through Bluetooth option. If I am directly coping it to SD Card, it is not working. My button phone not recognizing the MP3 files ...
Dev Anand Sadasivam's user avatar
0 votes
2 answers
64 views

I'm trying to copy some files from one directory to another and resolve all symlinks in the destination directory. To better illustrate what I'm saying, my source directory looks something like this: ...
AVS Origami's user avatar
2 votes
1 answer
115 views

I am writing a pseudo-shell in c for a class and my cp command needs to account for the destination being a file or a directory. I realized after I implemented everything I currently only truly ...
Amy Gregg's user avatar
0 votes
1 answer
44 views

I'm trying to copy multiple files from one directory to another via a Makefile. However this does not work... SHELL=/bin/bash copy: @cp /dir1/dir2/{file1,file2} /dir3/ Output: cp: /dir1/dir2/{...
ABHISHEK PATIL's user avatar
-2 votes
1 answer
41 views

The following command: cp "/Users/my.name/Documents/GitHub/Folder/*.dylib" "/Users/my.name/Documents/GitHub/OtherFolder" Throws the following: No such file or directory The ...
Milan's user avatar
  • 1,820
0 votes
1 answer
68 views

I would like to copy the contents of a text file has another text file but do not crush the first 2 lines of the other file, or copy and add the 2 lines to the new file Exemple: user1.txt: Phill Johne ...
Allan Tori's user avatar
1 vote
0 answers
472 views

I trying to copy a file from a container to my local machine. As you can see below, my container is runnig... ❯ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 1cbed27defce postgres &...
Lucas Melnik's user avatar
1 vote
0 answers
804 views

I am running on Ubuntu 22.04 with docker version 24.0.7 running in rootless mode. As part of standing up a new container I will copy files into it using the command docker cp. Previously I worked with ...
refriedjello's user avatar
0 votes
2 answers
74 views

I'm new to CPLEX, and I'm doing a project using CP. I have a multilist A that has 4 arguments : one Operation o, one Surgeon s, one Room r and one Time t A[o,s,r,t] == 1 if and only if the operation ...
Marcocorico's user avatar
0 votes
0 answers
198 views

Does anyone has any idea how can i check if kubectl cp commnd sends data in encrypted form or not. Tried to take the dump using tcpdump while running "kubectl cp" command but could not find ...
rawatsandeep1989's user avatar
-1 votes
1 answer
619 views

To clarify for users who think this is a common question... I know how to use an intermediate directory with a common group to transfer a file between two users. In my situation that intermediate file ...
szofar's user avatar
  • 11
1 vote
0 answers
401 views

The task is to copy to temp folder some data and then operate with it. The command cp /data/data/com.vivaldi.browser/app_chrome/ /data/local/tmp/zip gives cp: Skipped dir '/data/local/tmp/zip/': Cross-...
Ivan's user avatar
  • 61
0 votes
1 answer
2k views

I need to copy data across Google Cloud Platform - Cloud Storage(GCS) buckets (source is a GCS bucket and destination is a GCS bucket) Since I perform copy along some more operations in small batches ...
Yogesh Devi's user avatar
0 votes
0 answers
104 views

I need to capture host's os-release from inside the alpine docker container. If I directly run cp /etc/os-release /path/file command inside the container, it copies the details of alpine linux. I also ...
darecoder's user avatar
  • 1,638
0 votes
1 answer
57 views

I copy a file with the Turtle library. I do so like this: ... do TU.cp oldname newname ... However this sets the date of the copied file to the current time - how can I keep the original ...
halloleo's user avatar
  • 10.8k
0 votes
1 answer
1k views

I am trying to copy my artifact to /var/www/build so it is served by nginx. Unfortunately, for some unknown reason it doesn't copy. err: cp: cannot stat '/home/runner/work/investing/investing/client/...
Michael Paccione's user avatar
0 votes
2 answers
501 views

Some of my objects in my S3 buckets are encrypted with another KMS key. Which I don't have access to in that case I want to exclude these files. I have tried using S3 sync and it has parameter --...
Siddhartha Sarnobat's user avatar
0 votes
1 answer
623 views

In ortools cp-sat, how could we link an boolean decision variable to whether an integer variable value is between two given values. from ortools.sat.python import cp_model def get(x): return ...
John's user avatar
  • 1,838
1 vote
1 answer
430 views

Simple Query to show the columns SELECT TL4_Cp_Cpk.Tread_Length_LSL AS LSL, TL4_Cp_Cpk.Tread_Length_USL AS USL, TL4_Cp_Cpk.Tread_Length AS Length, FROM TL4_Cp_Cpk Formula from excel =MIN(USL-...
Dustin Castleberry's user avatar
1 vote
1 answer
1k views

My goal is to find all .pdf files from multiple subfolder structures and then move them to another folder. For this I have assembled the following. find /mnt/user/Data/01_Persönliche_Dokumente/...
Metti's user avatar
  • 11
2 votes
3 answers
2k views

How can I copy specific files from all directories and subdirectories to a new directory while preserving the original subdirectorie structure? This answer: find . -name \*.xls -exec cp {} newDir \; ...
len's user avatar
  • 817
2 votes
1 answer
3k views

I have a pipeline that needs to copy some files from a folder to a new one only if the files exists in the source folder. This is my script line: script: - cp source_folder/file.txt dest_folder/ 2&...
Christian Giupponi's user avatar
0 votes
0 answers
76 views

what is difference b/w - for(auto &i : v) and for(auto &&i : v) in cpp ? I tried to figure it out but I was getting all results simular only so I am just curious to know that both are ...
Chavda Sachin's user avatar
-2 votes
1 answer
437 views

I am running rsync version 3.0.8 and cp 8.32 on a Windows 10 host via git-bash. I have a git server running in a container that uses a hard drive attached to the host. Now I try to backup that server ...
TimFinnegan's user avatar
0 votes
1 answer
44 views

I have a whitelist.txt. Inside this txt is a list of file names simliar to this: 9853412_00000_0_0.vcf 7549682_00000_0_0.vcf 3589647_00000_0_0.vcf I want to look inside a specific SOURCE directory for ...
user20100946's user avatar

1
2 3 4 5
17