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里面的内容就可以了。
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里面的内容就可以了。