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

Scam? Checks via Email

Word for giving preference to the oldest child

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

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

Best Ergonomic Design for a handheld ranged weapon

Why put copper in between battery contacts and clamps?

Why did Windows 95 crash the whole system but newer Windows only crashed programs?

Why don't short runways use ramps for takeoff?

How can flights operated by the same company have such different prices when marketed by another?

Applications of pure mathematics in operations research

Why are we moving in circles with a tandem kayak?

Exploiting the delay when a festival ticket is scanned

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

Should I put my name first, or last in the team members list

What force enables us to walk? Friction or normal reaction?

why there is no “error” term in survival analysis?

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

How can Paypal know my card is being used in another account?

How to foreshadow to avoid a 'deus ex machina'-construction

How did astronauts using rovers tell direction without compasses on the Moon?

Correct word for a little toy that always stands up?

Does Ubuntu reduce battery life?

Word for soundtrack music which is part of the action of the movie

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



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

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






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

– RonJohn
44 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

ParseJSON using SSJSUsing AMPscript with SSJS ActivitiesHow to resubscribe a user in Marketing cloud using SSJS?Pulling Subscriber Status from Lists using SSJSRetrieving Emails using SSJSProblem in updating DE using SSJSUsing SSJS to send single email in Marketing CloudError adding EmailSendDefinition using SSJS

Кампала Садржај Географија Географија Историја Становништво Привреда Партнерски градови Референце Спољашње везе Мени за навигацију0°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.340°11′ СГШ; 32°20′ ИГД / 0.18° СГШ; 32.34° ИГД / 0.18; 32.34МедијиПодациЗванични веб-сајту

19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу