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

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -