Skip to content

Instantly share code, notes, and snippets.

@mikamboo
Last active March 9, 2020 09:12
Show Gist options
  • Save mikamboo/55c8d5733991aa3ede4d4de4aa2efe99 to your computer and use it in GitHub Desktop.
Save mikamboo/55c8d5733991aa3ede4d4de4aa2efe99 to your computer and use it in GitHub Desktop.
Scripting snippets

Scripting snippets

  • Extract Ubuntu release code using cut to split string and sed to trim text
#!/bin/sh

versioncode=`lsb_release -r | cut -f2 -d':' | sed -e  's/^[[:space:]]*//'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment