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

Are all French verb conjugation tenses and moods practical and efficient?

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

Avoiding Implicit Conversion in Constructor. Explicit keyword doesn't help here

Can I attune a Circlet of Human Perfection to my animated skeletons to allow them to blend in and speak?

Why did some Apollo missions carry a grenade launcher?

Would it take any sort of amendment to make DC a state?

Scam? Checks via Email

PCB design using code instead of clicking a mouse?

What are the cons of stateless password generators?

How can a circuit not have a neutral?

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

Did Vladimir Lenin have a cat?

Antonym of "Megalomania"

Easy way to get process from window

Should 2FA be enabled on service accounts?

Exploiting the delay when a festival ticket is scanned

What is the highest achievable score in Catan

Using Python in a Bash Script

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

What is a good example for artistic ND filter applications?

Move arrows along a contour

Bouncing map back into its bounds, after user dragged it out

What Marvel character has this 'W' symbol?

Coworker mumbles to herself when working, how to ask her to stop?



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;
}







3















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
    9 hours ago











  • Yes, I have done it. Thanks

    – a.mosallaei
    9 hours ago


















3















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
    9 hours ago











  • Yes, I have done it. Thanks

    – a.mosallaei
    9 hours ago














3












3








3








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 2 hours 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 9 hours ago









a.mosallaeia.mosallaei

384 bronze badges




384 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
    9 hours ago











  • Yes, I have done it. Thanks

    – a.mosallaei
    9 hours ago



















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

    – a.mosallaei
    9 hours ago











  • Yes, I have done it. Thanks

    – a.mosallaei
    9 hours ago

















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

– a.mosallaei
9 hours ago





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

– a.mosallaei
9 hours ago













Yes, I have done it. Thanks

– a.mosallaei
9 hours ago





Yes, I have done it. Thanks

– a.mosallaei
9 hours ago










1 Answer
1






active

oldest

votes


















6














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
    9 hours ago













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

    – a.mosallaei
    9 hours ago











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

    – user68186
    9 hours ago











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

    – RonJohn
    1 hour 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









6














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
    9 hours ago













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

    – a.mosallaei
    9 hours ago











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

    – user68186
    9 hours ago











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

    – RonJohn
    1 hour ago


















6














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
    9 hours ago













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

    – a.mosallaei
    9 hours ago











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

    – user68186
    9 hours ago











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

    – RonJohn
    1 hour ago
















6












6








6







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 2 hours ago

























answered 9 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
    9 hours ago













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

    – a.mosallaei
    9 hours ago











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

    – user68186
    9 hours ago











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

    – RonJohn
    1 hour 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
    9 hours ago













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

    – a.mosallaei
    9 hours ago











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

    – user68186
    9 hours ago











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

    – RonJohn
    1 hour 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
9 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
9 hours ago















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

– a.mosallaei
9 hours ago





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

– a.mosallaei
9 hours ago













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

– user68186
9 hours ago





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

– user68186
9 hours ago













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

– RonJohn
1 hour ago







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

– RonJohn
1 hour 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

Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

Ciclooctatetraenă Vezi și | Bibliografie | Meniu de navigare637866text4148569-500570979m