bash - split a long string of arguments after delimiter -


मेरे पास HTTP पते के साथ एक बहुत लंबी स्ट्रिंग है, जो "।" यानी

  http: //bla.com | http: //blabla.com | ...   

बाश में यह कैसे संभव होगा कुछ ऐसा

  http://bla.com http://blabla.com   

धन्यवाद

-a

यह प्रयास करें:

  गूंज "http: //bla.com | http : //blabla.com "| Tr '|' '\ N'    

Comments

Popular posts from this blog

How can I add a seperate action listener to all 14 of my buttons at once that can determine player turn?(java) -

php - Sorting an multidimension array using usort fails -

Simple file compression in C -