mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
18 lines
272 B
Bash
18 lines
272 B
Bash
|
|
#!/bin/bash
|
||
|
|
args=`getopt rmvs $*`
|
||
|
|
set -- $args
|
||
|
|
for i
|
||
|
|
do
|
||
|
|
if [ "$i" == "-v" ]; then
|
||
|
|
/bin/uname-real -v
|
||
|
|
fi
|
||
|
|
if [ "$i" == "-r" ]; then
|
||
|
|
echo "4.4.16-v7+"
|
||
|
|
fi
|
||
|
|
if [ "$i" == "-m" ]; then
|
||
|
|
echo "armv7l"
|
||
|
|
fi
|
||
|
|
if [ "$i" == "-s" ]; then
|
||
|
|
echo "Linux"
|
||
|
|
fi
|
||
|
|
done
|