Linux Compressor Humanizer https://lch.hatthieves.es
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.2 KiB

3 years ago
5 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
3 years ago
5 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. # Linux compressor humanizer
  2. Tool that extract or compress files automatically in a simple & easy way.
  3. It keeps the kiss philosophy avoiding to memorize weird flags and commands to extract & compress files.
  4. It allows you to auto install dependencies or even proprietary dependencies if requested.
  5. ## Installation
  6. ###### install
  7. ```
  8. sudo ./bin/install.sh
  9. ```
  10. ###### Uninstall
  11. ```
  12. sudo ./bin/uninstall.sh
  13. ```
  14. ## Usage
  15. ###### Compress
  16. ```
  17. $ lch file.zip file1 [file2...]
  18. ```
  19. ###### Decompress
  20. ```
  21. $ lch file.zip
  22. ```
  23. ###### Options
  24. ```
  25. $ lch -h - Show help
  26. $ lch -v - Print version
  27. $ lch -c - Check compression systems
  28. $ lch -i - Install the compressors dependencies
  29. ```
  30. ## Supported extensions
  31. ###### Packing/unpacking:
  32. - 7z
  33. - bz2
  34. - gz
  35. - rar
  36. - tar
  37. - tar.bz2, tbz, tbz2, tb2
  38. - tar.gz, tgz
  39. - tar.xz, txz
  40. - zip
  41. ###### Unpacking only:
  42. - arj
  43. - cab
  44. - dmg
  45. - iso
  46. - lzh
  47. - lzma
  48. - rpm
  49. - squashfs
  50. - vdi
  51. - vhd
  52. - vmdk
  53. - win
  54. - xar
  55. - z
  56. ## Testing with docker
  57. ```
  58. $ git clone https://gitea.hatthieves.es/cloud/lch
  59. $ cd lch && docker run -it --rm --name lch --workdir /lch -v $(pwd):/lch putyourdistributionhere ./lch -h
  60. ```