我正在尝试关注一个关于机器学习的博客。在博客中,作者使用linux命令将一定数量的文件从一个文件夹转移/复制到另一个文件夹。我在Mac上工作,我试图根据mac环境(以我有限的知识)修改它们来运行命令,但无法将它们复制到其他文件夹中。下面是从博客中复制的Linux命令
#Transfer data into the specific directory
echo "---Parasitized---"
cd Parasitized_all
cp `ls Parasitized_all | head -5000` ../Parasitized_train
cp `ls Parasi
我使用的是AIX。
当我尝试使用以下命令将一个文件夹中的所有文件复制到另一个文件夹时:
cp ./00012524/*.PDF ./dummy01
shell会报错:
ksh: /usr/bin/cp: 0403-027 The parameter list is too long.
如何应对?我的文件夹包含8xxxx文件,我怎样才能非常快速地复制它们?每个文件的大小为4x kb到1xx kb。
我编写了一个非常简单的dockerfile,但不幸的是,它在dockerfile中执行以下命令时失败了:-
RUN ["cp -r", "node_modules/dir1/test/*", "/app"]
以下是我收到的错误信息:-
OCI runtime create failed: container_linux.go:349: starting container process caused "exec: \"cp -r\": executable file not found in $PATH": un
我正在尝试将当前文件夹的所有内容复制到另一个隐藏文件夹中:
我要将folderA中的所有内容放到B文件夹中
--sdcard
- FoldeA
- .FolderB >>This is a hidden folder
shell../mnt/sdcard $ cp -a FolderA/. .FolderB >Do not work
shell../mnt/sdcard $ cp FolderA/. .FolderB >Do not work
shell../mnt/sdcard $ cp /FolderA/. /.FolderB/ >Do not wor
我需要将一个目录的内容复制到另一个目录。
我只需要复制一个子文件夹。
例如,如果我有一个名为"from“的文件夹,并且希望复制它的一个子文件夹(其中所有的东西都在其中),称为"21-01-2015”<- -这个名称每天都会更改,并且我想通过cronjob执行它,到文件夹" to“。
+ from
- 21-01-2015 (**this name changes all the time**)
- month (**this stays always the same**)
我目前正在使用这个命令:cp -a /path/from /path/to