35 lines
479 B
Bash
35 lines
479 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
# Цвета для вывода
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
BLUE='\033[0;34m'
|
|
NC='\033[0m' # No Color
|
|
|
|
# Форматирование текста
|
|
function msgerr()
|
|
{
|
|
echo -e "${RED}$1${NC}"
|
|
}
|
|
function msgok()
|
|
{
|
|
echo -e "${GREEN}$1${NC}"
|
|
}
|
|
function msgpr()
|
|
{
|
|
echo -e "\e[35m$1${NC}"
|
|
}
|
|
|
|
msgpr "hey! this is talias-d!"
|
|
|
|
msgerr "hey! this is ERROR!"
|
|
msgok "hey! this is OK!"
|
|
|
|
check_apt() {
|
|
sudo apt install $1 -y
|
|
}
|
|
|