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;
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
New contributor
add a comment |
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
New contributor
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
add a comment |
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
New contributor
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
command-line bash scripts
New contributor
New contributor
edited 1 hour ago
Eliah Kagan
87.4k22 gold badges243 silver badges385 bronze badges
87.4k22 gold badges243 silver badges385 bronze badges
New contributor
asked 8 hours ago
a.mosallaeia.mosallaei
334 bronze badges
334 bronze badges
New contributor
New contributor
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
Var=$(lsb_release -r)
echo "$Var"
Should do the trick.
For the numeric portion only add this:
NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"
so yes thank you, it does work, it outputsRelease: 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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Var=$(lsb_release -r)
echo "$Var"
Should do the trick.
For the numeric portion only add this:
NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"
so yes thank you, it does work, it outputsRelease: 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
add a comment |
Var=$(lsb_release -r)
echo "$Var"
Should do the trick.
For the numeric portion only add this:
NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"
so yes thank you, it does work, it outputsRelease: 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
add a comment |
Var=$(lsb_release -r)
echo "$Var"
Should do the trick.
For the numeric portion only add this:
NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"
Var=$(lsb_release -r)
echo "$Var"
Should do the trick.
For the numeric portion only add this:
NumOnly=$(cut -f2 <<< "$Var")
echo "$NumOnly"
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 outputsRelease: 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
add a comment |
so yes thank you, it does work, it outputsRelease: 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
add a comment |
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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