#!/bin/sh

if [ "$1" = "-r" ]
then
	cat /proc/version | cut -d' ' -f3
else
	cat /proc/version
fi
