Blogger Information
Blog 75
fans 0
comment 0
visits 55572
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
小猿圈之Linux获取文件名称并生成列表txt的方法
聆听的博客
Original
665 people have browsed it

linux怎样获取文件名并生成列表txt呢,想必初学linux的朋友还不了解吧,小猿圈加加这篇详细阐述一下这个方法,感兴趣的朋友可以看看小猿圈的文章,希望对你有帮助。

如下所示:

> 自己写的create_filelist.sh文件,如下

实例

train_file=test.txt

path=train/test

find $path -name *.jpg > $train_file

#'s/pattern/your_word/g' file_path/filename

sed -i 's/$/ 6/g' $train_file

运行实例 »

1、find命令:

find后跟一个存放想要查找的文件的地址,然后后面是-name参数,其后的参数代表文件名称*.jpg就是代表所有的jpg文件了。

‘>'符号代表输出到文件,此处输出到制定的txt文件中。

2、sed命令:

-i代表直接修改读取的文件内容,而非输出到终端

引号中内容代表替换,$代表在文件最后替换,后面跟了一个空格和数字代表每行字符后加空格和数字,代表文件对应的标签序号。

到这里就结束了,大家学会了没,可以在自己的linux系统中练习一下,感觉不错的,可以看看小猿圈官网,一个免费的自学网,小编感觉还是不错的,分享一下,希望也能在你们的学习之路上帮助你们。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post