10 lines
105 B
Bash
Executable File
10 lines
105 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" == "-r" ]
|
|
then
|
|
echo KERNEL_VERSION.x86_64
|
|
else
|
|
/usr/bin/uname-backup $1
|
|
fi
|
|
exit 0
|