15 lines
446 B
Python
15 lines
446 B
Python
import re
|
|
|
|
from util import hook, http
|
|
|
|
|
|
@hook.command(autohelp=False)
|
|
def kernel(inp, reply=None):
|
|
contents = http.get("https://www.kernel.org/finger_banner")
|
|
contents = re.sub(r'The latest(\s*)', '', contents)
|
|
contents = re.sub(r'version of the Linux kernel is:(\s*)', '- ', contents)
|
|
lines = contents.split("\n")
|
|
|
|
message = "Linux kernel versions: "
|
|
message += ", ".join(line for line in lines[:-1])
|
|
reply(message)
|