mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-02-12 23:19:05 +08:00
8 lines
188 B
Bash
8 lines
188 B
Bash
#!/bin/bash
|
|
|
|
if [ `whoami` -ne "root" ]; then
|
|
echo "Запустите этот скрипт от имени root! Выход."
|
|
exit 0
|
|
fi
|
|
|
|
urpmi bison gawk texinfo make gcc-c++ |