shell 脚本 如何解析这段字符串?
以下是网络返回的一段字符串,我想在 shell 脚本中解析这段字符串,获取 fsize 的值,也就是 13431719
请问该怎么做?
2018-06-14 14:38:26,380 - DEBUG - wcscmd version 1.0.0
2018-06-14 14:38:26,381 - DEBUG - Updating Config.Config ishttps->None
2018-06-14 14:38:26,381 - DEBUG - Updating Config.Config limit->None
2018-06-14 14:38:26,381 - DEBUG - Updating Config.Config marker->None
2018-06-14 14:38:26,381 - DEBUG - Updating Config.Config mode->None
2018-06-14 14:38:26,382 - DEBUG - Updating Config.Config output->None
2018-06-14 14:38:26,382 - DEBUG - Updating Config.Config overwrite->None
2018-06-14 14:38:26,382 - DEBUG - Updating Config.Config prefix->None
2018-06-14 14:38:26,382 - DEBUG - Updating Config.Config separate->None
2018-06-14 14:38:26,382 - DEBUG - Updating Config.Config upload_id->None
2018-06-14 14:38:26,382 - DEBUG - Command: stat
2018-06-14 14:38:26,383 - DEBUG - Start to get the stat of rsrj-test001:vikii/test02.mp4
2018-06-14 14:38:26,603 - DEBUG - (200, {'mimeType': 'video/mp4', 'code': 200, 'hash': 'ltVu-sfde4Uoq-86-gvx3Ase_j70', 'name': 'vikii/test02.mp4', 'fsize': 13431719, 'expirationDate': '', 'message': 'OK', 'putTime': 1528958272000L, 'result': True}, {'x-reqid': '202829121214713520180614143826YQP4KbiG'})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
egrep -o "'fsize': (\d*)" txt | cut -d ' ' -f 2
给你一种,自己思考下其他方法吧
grep -Po "200.+?'fsize': \K\d+"