How can you tell the version of Ubuntu on a system in a .sh (bash) script?How do the environments of a standard Terminal command-line and a bash script differ?Bash Script to set “system wide” proxy settingsHow can I use conditional constructs in a bash case statement?How can I reliably count the number of increments in an rdiff-backup directory?Resolving lower Bash script issue through shopt commandWhen writing a bash script, how do I get the absolute path of the location of the current file?Bash Script in Ubuntu to download pics and store them locallyHow can I supply arguments from variable value to the command in shell script?How to create a Bash script which can search for a string in a file and get the numeric value of the string and compare with another valueReading system varibles in script

Is there a word or phrase that means 'works but not for the reason we expect it to'?

How to choose using Collection<Id> rather than Collection<String>, or the opposite?

How can you tell the version of Ubuntu on a system in a .sh (bash) script?

What are the closest international airports in different countries?

What are the cons of stateless password generators?

If the Moon were impacted by a suitably sized meteor, how long would it take to impact the Earth?

Can living where Earth magnetic ore is abundant provide any protection?

Scam? Checks via Email

Can machine learning learn a function like finding maximum from a list?

Should students have access to past exams or an exam bank?

Why would anyone ever invest in a cash-only etf?

Word for giving preference to the oldest child

How does Asimov's second law deal with contradictory orders from different people?

What would the United Kingdom's "optimal" Brexit deal look like?

Should 2FA be enabled on service accounts?

Is it unprofessional to mention your cover letter and resume are best viewed in Chrome?

How can a circuit not have a neutral?

How do discovery writers hibernate?

How to efficiently shred a lot of cabbage?

Should I intervene when a colleague in a different department makes students run laps as part of their grade?

Best Ergonomic Design for a handheld ranged weapon

Exploiting the delay when a festival ticket is scanned

Complaints from (junior) developers against solution architects: how can we show the benefits of our work and improve relationships?

Why does Earth need water in the Expanse?



How can you tell the version of Ubuntu on a system in a .sh (bash) script?


How do the environments of a standard Terminal command-line and a bash script differ?Bash Script to set “system wide” proxy settingsHow can I use conditional constructs in a bash case statement?How can I reliably count the number of increments in an rdiff-backup directory?Resolving lower Bash script issue through shopt commandWhen writing a bash script, how do I get the absolute path of the location of the current file?Bash Script in Ubuntu to download pics and store them locallyHow can I supply arguments from variable value to the command in shell script?How to create a Bash script which can search for a string in a file and get the numeric value of the string and compare with another valueReading system varibles in script






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















So I am trying to create a bash/executable, and it in I need to know the version number of Ubuntu on the system. All the ways I have found online consist of lsb_release -r, however I cannot output this into a variable.



Is there any way to get the current version of Ubuntu and save as a variable in a shell executable?










share|improve this question









New contributor



a.mosallaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Yes, I do appreciate it. Sorry, I wasn't aware there was documentation on this. I appreciate it anyhow

    – a.mosallaei
    8 hours ago











  • Yes, I have done it. Thanks

    – a.mosallaei
    8 hours ago

















2















So I am trying to create a bash/executable, and it in I need to know the version number of Ubuntu on the system. All the ways I have found online consist of lsb_release -r, however I cannot output this into a variable.



Is there any way to get the current version of Ubuntu and save as a variable in a shell executable?










share|improve this question









New contributor



a.mosallaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Yes, I do appreciate it. Sorry, I wasn't aware there was documentation on this. I appreciate it anyhow

    – a.mosallaei
    8 hours ago











  • Yes, I have done it. Thanks

    – a.mosallaei
    8 hours ago













2












2








2








So I am trying to create a bash/executable, and it in I need to know the version number of Ubuntu on the system. All the ways I have found online consist of lsb_release -r, however I cannot output this into a variable.



Is there any way to get the current version of Ubuntu and save as a variable in a shell executable?










share|improve this question









New contributor



a.mosallaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











So I am trying to create a bash/executable, and it in I need to know the version number of Ubuntu on the system. All the ways I have found online consist of lsb_release -r, however I cannot output this into a variable.



Is there any way to get the current version of Ubuntu and save as a variable in a shell executable?







command-line bash scripts






share|improve this question









New contributor



a.mosallaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question









New contributor



a.mosallaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question








edited 1 hour ago









Eliah Kagan

87.4k22 gold badges243 silver badges385 bronze badges




87.4k22 gold badges243 silver badges385 bronze badges






New contributor



a.mosallaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked 8 hours ago









a.mosallaeia.mosallaei

334 bronze badges




334 bronze badges




New contributor



a.mosallaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




a.mosallaei is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

















  • Yes, I do appreciate it. Sorry, I wasn't aware there was documentation on this. I appreciate it anyhow

    – a.mosallaei
    8 hours ago











  • Yes, I have done it. Thanks

    – a.mosallaei
    8 hours ago

















  • Yes, I do appreciate it. Sorry, I wasn't aware there was documentation on this. I appreciate it anyhow

    – a.mosallaei
    8 hours ago











  • Yes, I have done it. Thanks

    – a.mosallaei
    8 hours ago
















Yes, I do appreciate it. Sorry, I wasn't aware there was documentation on this. I appreciate it anyhow

– a.mosallaei
8 hours ago





Yes, I do appreciate it. Sorry, I wasn't aware there was documentation on this. I appreciate it anyhow

– a.mosallaei
8 hours ago













Yes, I have done it. Thanks

– a.mosallaei
8 hours ago





Yes, I have done it. Thanks

– a.mosallaei
8 hours ago










1 Answer
1






active

oldest

votes


















5














Var=$(lsb_release -r)
echo "$Var"


Should do the trick.



For the numeric portion only add this:



NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"





share|improve this answer



























  • so yes thank you, it does work, it outputs Release: 18.04. However is there a way to just get the number? I want to be able to use this variable in an if/else function in the script. The purpose of the if/else is to download the correct version of my application for the distro of ubuntu.

    – a.mosallaei
    8 hours ago












  • Ah nevermind. @user68186 solved my issue. Thank you guys so much!

    – a.mosallaei
    8 hours ago











  • I was going to write the answer but you beat me to it! :-) I am happy to contribute.

    – user68186
    8 hours ago











  • @a.mosallaei alternatively, NumOnly=$(lsb_release -r | cut -f2)

    – RonJohn
    4 mins ago














Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






a.mosallaei is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1162491%2fhow-can-you-tell-the-version-of-ubuntu-on-a-system-in-a-sh-bash-script%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









5














Var=$(lsb_release -r)
echo "$Var"


Should do the trick.



For the numeric portion only add this:



NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"





share|improve this answer



























  • so yes thank you, it does work, it outputs Release: 18.04. However is there a way to just get the number? I want to be able to use this variable in an if/else function in the script. The purpose of the if/else is to download the correct version of my application for the distro of ubuntu.

    – a.mosallaei
    8 hours ago












  • Ah nevermind. @user68186 solved my issue. Thank you guys so much!

    – a.mosallaei
    8 hours ago











  • I was going to write the answer but you beat me to it! :-) I am happy to contribute.

    – user68186
    8 hours ago











  • @a.mosallaei alternatively, NumOnly=$(lsb_release -r | cut -f2)

    – RonJohn
    4 mins ago
















5














Var=$(lsb_release -r)
echo "$Var"


Should do the trick.



For the numeric portion only add this:



NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"





share|improve this answer



























  • so yes thank you, it does work, it outputs Release: 18.04. However is there a way to just get the number? I want to be able to use this variable in an if/else function in the script. The purpose of the if/else is to download the correct version of my application for the distro of ubuntu.

    – a.mosallaei
    8 hours ago












  • Ah nevermind. @user68186 solved my issue. Thank you guys so much!

    – a.mosallaei
    8 hours ago











  • I was going to write the answer but you beat me to it! :-) I am happy to contribute.

    – user68186
    8 hours ago











  • @a.mosallaei alternatively, NumOnly=$(lsb_release -r | cut -f2)

    – RonJohn
    4 mins ago














5












5








5







Var=$(lsb_release -r)
echo "$Var"


Should do the trick.



For the numeric portion only add this:



NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"





share|improve this answer















Var=$(lsb_release -r)
echo "$Var"


Should do the trick.



For the numeric portion only add this:



NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"






share|improve this answer














share|improve this answer



share|improve this answer








edited 1 hour ago

























answered 8 hours ago









WinEunuuchs2UnixWinEunuuchs2Unix

55.7k15 gold badges107 silver badges215 bronze badges




55.7k15 gold badges107 silver badges215 bronze badges















  • so yes thank you, it does work, it outputs Release: 18.04. However is there a way to just get the number? I want to be able to use this variable in an if/else function in the script. The purpose of the if/else is to download the correct version of my application for the distro of ubuntu.

    – a.mosallaei
    8 hours ago












  • Ah nevermind. @user68186 solved my issue. Thank you guys so much!

    – a.mosallaei
    8 hours ago











  • I was going to write the answer but you beat me to it! :-) I am happy to contribute.

    – user68186
    8 hours ago











  • @a.mosallaei alternatively, NumOnly=$(lsb_release -r | cut -f2)

    – RonJohn
    4 mins ago


















  • so yes thank you, it does work, it outputs Release: 18.04. However is there a way to just get the number? I want to be able to use this variable in an if/else function in the script. The purpose of the if/else is to download the correct version of my application for the distro of ubuntu.

    – a.mosallaei
    8 hours ago












  • Ah nevermind. @user68186 solved my issue. Thank you guys so much!

    – a.mosallaei
    8 hours ago











  • I was going to write the answer but you beat me to it! :-) I am happy to contribute.

    – user68186
    8 hours ago











  • @a.mosallaei alternatively, NumOnly=$(lsb_release -r | cut -f2)

    – RonJohn
    4 mins ago

















so yes thank you, it does work, it outputs Release: 18.04. However is there a way to just get the number? I want to be able to use this variable in an if/else function in the script. The purpose of the if/else is to download the correct version of my application for the distro of ubuntu.

– a.mosallaei
8 hours ago






so yes thank you, it does work, it outputs Release: 18.04. However is there a way to just get the number? I want to be able to use this variable in an if/else function in the script. The purpose of the if/else is to download the correct version of my application for the distro of ubuntu.

– a.mosallaei
8 hours ago














Ah nevermind. @user68186 solved my issue. Thank you guys so much!

– a.mosallaei
8 hours ago





Ah nevermind. @user68186 solved my issue. Thank you guys so much!

– a.mosallaei
8 hours ago













I was going to write the answer but you beat me to it! :-) I am happy to contribute.

– user68186
8 hours ago





I was going to write the answer but you beat me to it! :-) I am happy to contribute.

– user68186
8 hours ago













@a.mosallaei alternatively, NumOnly=$(lsb_release -r | cut -f2)

– RonJohn
4 mins ago






@a.mosallaei alternatively, NumOnly=$(lsb_release -r | cut -f2)

– RonJohn
4 mins ago











a.mosallaei is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















a.mosallaei is a new contributor. Be nice, and check out our Code of Conduct.












a.mosallaei is a new contributor. Be nice, and check out our Code of Conduct.











a.mosallaei is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1162491%2fhow-can-you-tell-the-version-of-ubuntu-on-a-system-in-a-sh-bash-script%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

Ласкавець круглолистий Зміст Опис | Поширення | Галерея | Примітки | Посилання | Навігаційне меню58171138361-22960890446Bupleurum rotundifoliumEuro+Med PlantbasePlants of the World Online — Kew ScienceGermplasm Resources Information Network (GRIN)Ласкавецькн. VI : Літери Ком — Левиправивши або дописавши її