从 html 文件中查找唯一的文件名
$ cat downloaded_file.html
1373 <A HREF="http://site.com/STDMON11202010_company.txt">STDMON11202010_company.txt</A><br> Monday, November 22, 2010 1:31 AM
如何从 shell 脚本中搜索 html 文件并选择以 STDMON
开头并以 _company.txt
结尾的唯一文件名
$ cat downloaded_file.html
1373 <A HREF="http://site.com/STDMON11202010_company.txt">STDMON11202010_company.txt</A><br> Monday, November 22, 2010 1:31 AM
How do I search an html file from my shell script and select the unique filenames those start with STDMON
and end with _company.txt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只有
STDMON
和_company.txt
之间的数字,您可以执行以下操作:看看
如果有什么你可以做的:
If you have only digits between
STDMON
and_company.txt
you can do:See it
And if there can be anything you can do:
输入
输出
Input
Output