13 lines
120 B
Bash
Executable File
13 lines
120 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Prints out the kernel version
|
|
|
|
PREFIX=' '
|
|
|
|
get_kernel()
|
|
{
|
|
echo "$PREFIX$(uname -r)"
|
|
}
|
|
|
|
get_kernel
|