概述
1、首先用 ls > file.log 生成file.log文件。
2、用vi编辑 file.log文件,将不用的文件/目录删掉
3、创建一个for语句的脚本,将file.log里的文件批量处理
example:
root@ubuntu:/home/ye/GNU# ls > log.log
root@ubuntu:/home/ye/GNU# ls
1 gcc.txt hello.h hellosundy.c hellosundy.o Testfile
countlib.c hello.c hellosundy hellosundycomplete hellosundy.s
Download hello_h hellosundy2 hellosundy.i log.log
root@ubuntu:/home/ye/GNU# vi log.log
#!/bin/bash
#将选的log(目录)里的文件移动到指定位置
cd /home/ye/GNU/
for i in $(cat log.log)
do
mv -t /home/ye/GNU/Testfile/ $i
done
root@ubuntu:/home/ye/GNU# ls
Download for.sh Testfile
Ps:其它批处理文件类似,更改do--done里面的内容就可以了。
最后
以上就是炙热冬天为你收集整理的即学即用笔记——利用for脚本实现批量移动文件/文件夹的全部内容,希望文章能够帮你解决即学即用笔记——利用for脚本实现批量移动文件/文件夹所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复