From ae117b491ad51cd8db1db91b0031aaff34efb5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Adolfo=20Mesa=20Rold=C3=A1n?= Date: Sat, 3 Oct 2020 15:38:38 +0200 Subject: [PATCH 1/6] 0.6r9 - Get dreamsgit add . --- lch.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lch.1 b/lch.1 index 9051994..3a07529 100644 --- a/lch.1 +++ b/lch.1 @@ -45,6 +45,6 @@ will compress file1 and file2 in file.tar.gz Report your bugs at .SH AUTHOR -\fBlch\fP are by Gustavo Adolfo Mesa Roldan , radikal . +\fBlch\fP are by Gustavo Adolfo Mesa Roldan , radikal , Ale Romero , m . This document is by radikal . \ No newline at end of file From 68bb954a7fe1542539a5aa6816cac582013fe064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Adolfo=20Mesa=20Rold=C3=A1n?= Date: Sat, 3 Oct 2020 15:45:33 +0200 Subject: [PATCH 2/6] 06.r10 --- install.sh | 2 +- lch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 28ac8f5..bc9716e 100755 --- a/install.sh +++ b/install.sh @@ -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" diff --git a/lch b/lch index 0067165..860e85b 100755 --- a/lch +++ b/lch @@ -1,5 +1,5 @@ #!/usr/bin/env bash -VERSION=0.6r8 +VERSION=0.6r10 DEST=$1 shift 1 ORIG=$@ From f29b0da9f5015f84cfd0cac3a94cd1f59ad14f17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Adolfo=20Mesa=20Rold=C3=A1n?= Date: Sat, 3 Oct 2020 16:27:50 +0200 Subject: [PATCH 3/6] instal fixed --- lib/installers/deb.sh | 2 +- lib/installers/pacman.sh | 2 +- lib/installers/rpm.sh | 2 +- lib/installers/zypper.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/installers/deb.sh b/lib/installers/deb.sh index 3e9b16c..05b4021 100644 --- a/lib/installers/deb.sh +++ b/lib/installers/deb.sh @@ -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") diff --git a/lib/installers/pacman.sh b/lib/installers/pacman.sh index 8154713..078607d 100644 --- a/lib/installers/pacman.sh +++ b/lib/installers/pacman.sh @@ -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") diff --git a/lib/installers/rpm.sh b/lib/installers/rpm.sh index 2eb2fbc..c568277 100644 --- a/lib/installers/rpm.sh +++ b/lib/installers/rpm.sh @@ -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") diff --git a/lib/installers/zypper.sh b/lib/installers/zypper.sh index e3dcfae..8ae5970 100644 --- a/lib/installers/zypper.sh +++ b/lib/installers/zypper.sh @@ -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") From e08001bc5413a7d6f23b7c22dd4d1c25c663565d Mon Sep 17 00:00:00 2001 From: pberr Date: Sat, 3 Oct 2020 16:39:40 +0200 Subject: [PATCH 4/6] Create subfolders --- README.md | 4 ++-- install.sh => bin/install.sh | 0 uninstall.sh => bin/uninstall.sh | 0 lch.1 => man/lch.1 | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename install.sh => bin/install.sh (100%) rename uninstall.sh => bin/uninstall.sh (100%) rename lch.1 => man/lch.1 (100%) diff --git a/README.md b/README.md index ae3b5b1..2faee65 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ ###### install ``` -sudo ./install.sh +sudo ./bin/install.sh ``` ###### Uninstall ``` -sudo ./uninstall.sh +sudo ./bin/uninstall.sh ``` ## Usage diff --git a/install.sh b/bin/install.sh similarity index 100% rename from install.sh rename to bin/install.sh diff --git a/uninstall.sh b/bin/uninstall.sh similarity index 100% rename from uninstall.sh rename to bin/uninstall.sh diff --git a/lch.1 b/man/lch.1 similarity index 100% rename from lch.1 rename to man/lch.1 From 4c4d0a761eead0ee01eab5348bb7df992f99b1a7 Mon Sep 17 00:00:00 2001 From: pberr Date: Sat, 3 Oct 2020 16:40:38 +0200 Subject: [PATCH 5/6] Update version --- lch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lch b/lch index 860e85b..fbfe341 100755 --- a/lch +++ b/lch @@ -1,5 +1,5 @@ #!/usr/bin/env bash -VERSION=0.6r10 +VERSION=0.6r11 DEST=$1 shift 1 ORIG=$@ From 00c037ec951df4e9cec02d119f1c3649538da26e Mon Sep 17 00:00:00 2001 From: pberr Date: Sat, 3 Oct 2020 16:52:42 +0200 Subject: [PATCH 6/6] merge --- lch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lch b/lch index fbfe341..a79c250 100755 --- a/lch +++ b/lch @@ -1,5 +1,5 @@ #!/usr/bin/env bash -VERSION=0.6r11 +VERSION=0.6r9 DEST=$1 shift 1 ORIG=$@