Minor fixes
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Tool that extract or compress files automatically in a simple & easy way.
|
Tool that extract or compress files automatically in a simple & easy way.
|
||||||
It keeps the kiss philosophy avoiding to memorize weird flags and commands to extract & compress files.
|
It keeps the kiss philosophy avoiding to memorize weird flags and commands to extract & compress files.
|
||||||
It allows you to auto install dependencies or even propietary dependencies if requested.
|
It allows you to auto install dependencies or even proprietary dependencies if requested.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -24,7 +24,7 @@ function rarInstall(){
|
|||||||
rm -r rar $RAR_FILE > /dev/null
|
rm -r rar $RAR_FILE > /dev/null
|
||||||
complete_install "rar"
|
complete_install "rar"
|
||||||
else
|
else
|
||||||
echo -e "\n\e[91m[Error]\e[0m - wget or curl is not installed, so rar could not be installed.\nPlease install wget.\n"
|
echo -e "\n$RED[Error]$RESET - wget or curl are not in the system, so rar could not be installed.\nPlease, install wget or curl.\n"
|
||||||
read -p "Press [ENTER] to continue installing or [CTRL+C] to exit."
|
read -p "Press [ENTER] to continue installing or [CTRL+C] to exit."
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,22 +67,3 @@ else
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# [ -n "$(grep "centos" /etc/*-release)" ]
|
|
||||||
|
|
||||||
|
|
||||||
# echo -e "CentOS system detected"
|
|
||||||
# yum install -y -q epel-release 1> /dev/null
|
|
||||||
# rpm -U --quiet http://mirrors.kernel.org/fedora-epel/6/i386/epel-release-6-8.noarch.rpm 1> /dev/null
|
|
||||||
# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 1> /dev/null
|
|
||||||
# yum repolist 1> /dev/null
|
|
||||||
# yum install -y -q tar bzip2 gzip zip unzip p7zip p7zip-plugins 1> /dev/null
|
|
||||||
# elif
|
|
||||||
# then
|
|
||||||
# echo -e "DNF system detected"
|
|
||||||
# dnf install -y -q tar bzip2 gzip zip unzip p7zip p7zip-plugins 1> /dev/null
|
|
||||||
# elif
|
|
||||||
# then
|
|
||||||
# echo -e "Yum system detected"
|
|
||||||
# yum install -y -q tar bzip2 gzip zip unzip p7zip p7zip-plugins 1> /dev/null
|
|
||||||
+11
-6
@@ -1,5 +1,10 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
RESET="\e[0m"
|
||||||
|
GREEN="\e[32m"
|
||||||
|
RED="\e[91m"
|
||||||
|
|
||||||
function help()
|
function help()
|
||||||
{
|
{
|
||||||
echo "Help:"
|
echo "Help:"
|
||||||
@@ -10,7 +15,7 @@ function help()
|
|||||||
echo "Examples:"
|
echo "Examples:"
|
||||||
echo "$ lch -h - This help"
|
echo "$ lch -h - This help"
|
||||||
echo "$ lch -v - Print version"
|
echo "$ lch -v - Print version"
|
||||||
echo "$ lch -c - Check compresion systems"
|
echo "$ lch -c - Check compression systems"
|
||||||
echo "$ lch -i - Install the compressors dependencies"
|
echo "$ lch -i - Install the compressors dependencies"
|
||||||
echo "$ lch file.zip - Decompress"
|
echo "$ lch file.zip - Decompress"
|
||||||
echo "$ lch file.zip /home/file - Compress"
|
echo "$ lch file.zip /home/file - Compress"
|
||||||
@@ -38,10 +43,10 @@ function check()
|
|||||||
WPID=$!
|
WPID=$!
|
||||||
if ! [ -x "$(command -v $i)" ]
|
if ! [ -x "$(command -v $i)" ]
|
||||||
then
|
then
|
||||||
echo -e "$i\t\t\t\e[91mNot Installed\e[0m"
|
echo -e "$i$RED\t\t\tNot Installed$RESET"
|
||||||
a=true
|
a=true
|
||||||
else
|
else
|
||||||
echo -e "$i\t\t\t\e[32mInstalled\e[0m"
|
echo -e "$i$GREEN\t\t\tInstalled$RESET"
|
||||||
fi
|
fi
|
||||||
disown $WPID
|
disown $WPID
|
||||||
kill $WPID &> /dev/null
|
kill $WPID &> /dev/null
|
||||||
@@ -62,7 +67,7 @@ function lowercase()
|
|||||||
|
|
||||||
function error_not_install()
|
function error_not_install()
|
||||||
{
|
{
|
||||||
echo -e "$@ \e[91mis not installed\e[0m, use 'lch -i' to install and 'lch -c' to check."
|
echo -e "$@$RED is not installed$RESET, use 'lch -c' to check and 'lch -i' to install."
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -81,11 +86,11 @@ function executer()
|
|||||||
}
|
}
|
||||||
|
|
||||||
function complete_install(){
|
function complete_install(){
|
||||||
echo -e "$@:\t\t\t\e[32mComplete\e[0m"
|
echo -e "$@:$GREEN\t\t\tCompleted$RESET"
|
||||||
}
|
}
|
||||||
|
|
||||||
function failed_install(){
|
function failed_install(){
|
||||||
echo -e "$@:\t\t\t\e[91mFailed\e[0m"
|
echo -e "$@:$RED\t\t\tFailed$RESET"
|
||||||
}
|
}
|
||||||
|
|
||||||
function wheel() {
|
function wheel() {
|
||||||
|
|||||||
Reference in New Issue
Block a user