Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to extract version from below mentioned URL's using shell commands like, grep, awk, sed, cut which ever is most suitable

https://abcd/efgh/1.1.3/hijkl/mnop    
https://abcd/efgh/hijkl/2.3.4.5/mnop    
https://abcd/3.4/efgh/hijkl/mnop

I am looking to extract the version(numbers with dot) alone from the URL, where the position may vary as in above example. Looking for suggestions.

Expected output to be :

1.1.3
2.3.4.5
3.4
question from:https://stackoverflow.com/questions/65949581/extract-version-using-shell-commands

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
789 views
Welcome To Ask or Share your Answers For Others

1 Answer

You may use this grep:

grep -Eo '[0-9]+(.[0-9]+)+' file

1.1.3
2.3.4.5
3.4

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...