6 lines
83 B
Bash
6 lines
83 B
Bash
#!/usr/bin/env sh
|
|
# DEPENDS ON: uname
|
|
|
|
bkernel() {
|
|
printf "%s" "$(uname -r)"
|
|
}
|