1
我想從shell var中提取子字符串。這是一個例子:如何在bash中獲取子字符串變量
[email protected]:~$ var=$(curl -s 'https://www.youtube.com/')
[email protected]:~$ echo $var|grep -ob GetBrowse_rid
[email protected]:~$ 50000:GetBrowse_rid
[email protected]:~$ echo $var|grep -ob what_to_watch
[email protected]:~$ 55555:what_to_watch
[email protected]:~$ echo ${var:50000:55555}
我想提取文本beetwen 「GetBrowse_rid」 和 「what_to_watch」,但由於某些原因,我的代碼不工作
它做了什麼,以及你期望的是什麼? – chepner