Browse Source

Merge pull request '0.6r9' (#4) from 0.6r9 into master

Reviewed-on: https://gitea.hatthieves.es/cloud/lch/pulls/4
pull/8/head
g 3 years ago
parent
commit
f378c8a8cf
9 changed files with 9 additions and 9 deletions
  1. +2
    -2
      README.md
  2. +1
    -1
      bin/install.sh
  3. +0
    -0
      bin/uninstall.sh
  4. +1
    -1
      lch
  5. +1
    -1
      lib/installers/deb.sh
  6. +1
    -1
      lib/installers/pacman.sh
  7. +1
    -1
      lib/installers/rpm.sh
  8. +1
    -1
      lib/installers/zypper.sh
  9. +1
    -1
      man/lch.1

+ 2
- 2
README.md View File

@ -4,12 +4,12 @@
###### install
```
sudo ./install.sh
sudo ./bin/install.sh
```
###### Uninstall
```
sudo ./uninstall.sh
sudo ./bin/uninstall.sh
```
## Usage


install.sh → bin/install.sh View File

@ -13,7 +13,7 @@ echo "======================"
echo ""
cp lch /usr/bin/lch
mkdir -p /usr/lib/lch
cp ./lib/* /usr/lib/lch
cp -r ./lib/* /usr/lib/lch
chmod 755 /usr/bin/lch
echo " Copied lch in /usr/bin"

uninstall.sh → bin/uninstall.sh View File


+ 1
- 1
lch View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
VERSION=0.6r8
VERSION=0.6r9
DEST=$1
shift 1
ORIG=$@


+ 1
- 1
lib/installers/deb.sh View File

@ -37,7 +37,7 @@ if [ $# -eq 1 ]; then
else
for i in $@
do
if [ $i -ne "-i" ]
if [ $i != "-i" ]
then
case $i in
"rar" | "unrar")


+ 1
- 1
lib/installers/pacman.sh View File

@ -35,7 +35,7 @@ if [ $# -eq 1 ]; then
else
for i in $@
do
if [ $i -ne "-i" ]
if [ $i != "-i" ]
then
case $i in
"rar" | "unrar")


+ 1
- 1
lib/installers/rpm.sh View File

@ -49,7 +49,7 @@ if [ $# -eq 1 ]; then
else
for i in $@
do
if [ $i -ne "-i" ]
if [ $i != "-i" ]
then
case $i in
"rar" | "unrar")


+ 1
- 1
lib/installers/zypper.sh View File

@ -36,7 +36,7 @@ if [ $# -eq 1 ]; then
else
for i in $@
do
if [ $i -ne "-i" ]
if [ $i != "-i" ]
then
case $i in
"rar" | "unrar")


lch.1 → man/lch.1 View File

@ -45,6 +45,6 @@ will compress file1 and file2 in file.tar.gz
Report your bugs at <gore@hatthieves.es>
.SH AUTHOR
\fBlch\fP are by Gustavo Adolfo Mesa Roldan <gore@hackthieves.es>, radikal <radikal@disroot.org>.
\fBlch\fP are by Gustavo Adolfo Mesa Roldan <gore@hatthieves.es>, radikal <radikal@disroot.org>, Ale Romero <ale@hatthieves.es>, m <?@?>.
This document is by radikal <radikal@disroot.org>.

Loading…
Cancel
Save