linux复制文件夹中前N个文件
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
(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 年前
更多推荐
已为社区贡献17条内容
所有评论(0)