标签: bash sed match
假设我有一个名为output1
如何匹配从第3位到第5位的数字,以便有'tpu'?
感谢。
答案 0 :(得分:1)
在bash中:
i=output1 echo ${i:2:3}