2 Commits

Author SHA1 Message Date
Gustavo Adolfo Mesa Roldán b25fc8bd8d 0.5r7 2020-10-03 07:00:43 +02:00
Gustavo Adolfo Mesa Roldán edccc89586 0.5r7 2020-10-03 06:46:02 +02:00
4 changed files with 9 additions and 10 deletions
+3 -4
View File
@@ -40,10 +40,9 @@ $ lch -i - Install the compressors dependencies
- gz
- rar
- tar
- tar.bz2
- tar.gz
- tar.xz
- tgz
- tar.bz2, tbz, tbz2, tb2
- tar.gz, tgz
- tar.xz, txz
- zip
###### Unpacking only:
+1 -1
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
VERSION=0.5r6
VERSION=0.5r7
DEST=$1
shift 1
ORIG=$@
+3 -3
View File
@@ -11,10 +11,10 @@ simplicity in mind. Automatically select the compression format by file
extension.
Packing/unpacking supported extensions:
7z, bz2, gz, rar, tar, tar.bz2, tar.gz, tar.xz, tgz, zip
7z, bz2, gz, rar, tar, tar.bz2, tbz, tbz2, tb2, tar.gz, tgz, tar.xz, txz, zip
Unpacking only supported extensions:
arj, cab, dmg, iso, lzh, lzma, rpm, SquashFS, vdi, vhd, vmdk, win, xar, z
arj, cab, dmg, iso, lzh, lzma, rpm, SquashFS, vdi, vhd, vmdk, win, xar, z
.SH OPTIONS
.TP
+2 -2
View File
@@ -17,7 +17,7 @@ function help()
echo "$ lch files.zip file1 file2 - Compress multiple"
echo ""
echo "Packing/unpacking supported extensions:"
echo " 7z, bz2, gz, rar, tar, tar.bz2, tar.gz, tar.xz, tgz, zip"
echo " 7z, bz2, gz, rar, tar, tar.bz2, tbz, tbz2, tb2, tar.gz, tgz, tar.xz, txz, zip"
echo ""
echo "Unpacking only supported extensions:"
echo " arj, cab, dmg, iso, lzh, lzma, rpm, SquashFS, vdi, vhd, vmdk, win, xar, z"
@@ -58,6 +58,6 @@ function lowercase()
function error_not_install()
{
echo -e "$@ \e[91mis not Installed\e[0m, use 'lch -i' to install and 'lch -c' to check."
echo -e "$@ \e[91mis not installed\e[0m, use 'lch -i' to install and 'lch -c' to check."
exit 0
}