mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
18 lines
No EOL
272 B
Bash
18 lines
No EOL
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 |