(1)指令
ls |head -n N |xargs -i cp {} /home/xuqiong/data/testimg/nosee/test

N:文件个数

如果N=1000,命令如下:

ls |head -n 1000 |xargs -i cp {} /home/xuqiong/data/testimg/nosee/test

 

(2)报错:cp: omitting directory 'neg'

发现:复制的文件夹下还有名为:neg的文件夹

查看cp --h,用如下第一个:-r 进行递归,文件夹也可以拷贝

修改后指令为:

ls |head -n 1000 |xargs -i cp -r {} /home/xuqiong/data/testimg/nosee/test

 

说明:

目标文件夹路径:/home/xuqiong/data/testimg/nosee/test

指令需要在源文件夹路径下运行

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐