This website works better with JavaScript.
Home
Explore
Help
Sign In
g
/
lch
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
17
Wiki
Activity
Browse Source
reload sources and testing readme
pull/1/head
ale
4 years ago
parent
3dda858895
commit
7defe8f4ad
3 changed files
with
12 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
README.md
+2
-0
TODO
+4
-4
lch
+ 6
- 0
README.md
View File
@ -26,3 +26,9 @@ $ lch file.zip
```
sudo ./install.sh
```
## Testing with docker
```
$ git clone https://gitea.hatthieves.es/cloud/lch
$ cd lch
&
&
docker run -it --rm --name lch --workdir /lch -v $(pwd):/lch putyourdistributionhere ./lch -h
```
+ 2
- 0
TODO
View File
@ -15,3 +15,5 @@
- ¿Ficheros que soporta?
AR, ARJ, CAB, CHM, CPIO, CramFS, DMG, EXT, FAT, GPT, HFS, IHEX, ISO, LZH, LZMA, MBR, MSI, NSIS, NTFS, QCOW2, RAR, RPM, SquashFS, UDF, UEFI, VDI, VHD, VMDK, WIM, XAR and Z.
# Hacer desinstalador
+ 4
- 4
lch
View File
@ -1,12 +1,12 @@
#!/bin/bash
VERSION=0.3r
2
VERSION=0.3r
3
DEST=$1
shift 1
ORIG=$@
source /usr/lib/lch/compressor.sh || source ./lib/compressor.sh
source /usr/lib/lch/decompressor.sh || source ./lib/decompressor.sh
source /usr/lib/lch/check.sh || source ./lib/check.sh
if [ -z /usr/lib/lch/compressor.sh ]; then . /usr/lib/lch/compressor.sh; else . ./lib/compressor.sh; fi
if [ -z /usr/lib/lch/decompressor.sh ]; then . /usr/lib/lch/decompressor.sh; else . ./lib/decompressor.sh; fi
if [ -z /usr/lib/lch/check.sh ]; then . /usr/lib/lch/check.sh; else . ./lib/check.sh; fi
function help()
{
Write
Preview
Loading…
Cancel
Save