DevOps Articles

Curated articles, resources, tips and trends from the DevOps World.

Compute newest kernel version from Makefile on Torvalds' git repository

4 years ago www.commandlinefu.com

Summary: This is a summary of an article originally published by the source. Read the full original article here →

wget -qO - https://raw.githubusercontent.com/torvalds/linux/master/Makefile | head -n5 | grep -E '\ \=\ [0-9]{1,}' | cut -d' ' -f3 | tr '\n' '.' Breakdown: * wget -qO - https://raw.githubusercontent.com/torvalds/linux/master/Makefile — retrieve Makefile and pipe to stdout * head -n5 — only the first 5 lines are relevant, that's where all the version variables are grep -E '\ \=\ [0-9]{1,}' — version variables always have an equals sign followed by a number * cut -d' ' -f3 — extract the individual numbers from the version variables * tr '\n' '.'

Share Your CommandsGet current stable kernel version string from kernel.orgeasiest way to get kernel version without unameGet current stable kernel version string from kernel.orgGet current stable kernel version string from kernel.org

There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,… Subscribe to the feed for: commandlinefu.com © 2018 Dan's Tools | FAQs | API | Widget | Privacy

Made with pure grit © 2024 Jetpack Labs Inc. All rights reserved. www.jetpacklabs.com