tools: Added unrar for rar archive files.
This commit is contained in:
parent
ea992a3b2d
commit
a783abbf32
2 changed files with 9 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ then to run:
|
||||||
|
|
||||||
### Tools
|
### Tools
|
||||||
|
|
||||||
Extensions(79) | Tools(50)
|
Extensions(80) | Tools(51)
|
||||||
---------- | -----
|
---------- | -----
|
||||||
.* | [contents](http://pygments.org/) • metadata • [git_blame](https://git-scm.com/docs/git-blame) • [git_log](https://git-scm.com/docs/git-log)
|
.* | [contents](http://pygments.org/) • metadata • [git_blame](https://git-scm.com/docs/git-blame) • [git_log](https://git-scm.com/docs/git-log)
|
||||||
.py | [python_syntax](https://en.wikipedia.org/wiki/Python_syntax_and_semantics) • [python_unittests](https://docs.python.org/3/library/unittest.html) • [pydoc](https://docs.python.org/3/library/pydoc.html) • [mypy](http://www.mypy-lang.org/) • [python_coverage](http://nedbatchelder.com/code/coverage/) • [pycodestyle](https://pypi.python.org/pypi/pycodestyle) • [pydocstyle](http://pydocstyle.readthedocs.org/) • [pyflakes](https://launchpad.net/pyflakes) • [pylint](http://www.pylint.org/) • [python_gut](https://github.com/ahamilton/vigil/blob/master/gut.py) • [python_modulefinder](https://docs.python.org/3/library/modulefinder.html) • [dis](https://docs.python.org/3/library/dis.html) • [python_mccabe](https://github.com/flintwork/mccabe) • [bandit](https://wiki.openstack.org/wiki/Security/Projects/Bandit)
|
.py | [python_syntax](https://en.wikipedia.org/wiki/Python_syntax_and_semantics) • [python_unittests](https://docs.python.org/3/library/unittest.html) • [pydoc](https://docs.python.org/3/library/pydoc.html) • [mypy](http://www.mypy-lang.org/) • [python_coverage](http://nedbatchelder.com/code/coverage/) • [pycodestyle](https://pypi.python.org/pypi/pycodestyle) • [pydocstyle](http://pydocstyle.readthedocs.org/) • [pyflakes](https://launchpad.net/pyflakes) • [pylint](http://www.pylint.org/) • [python_gut](https://github.com/ahamilton/vigil/blob/master/gut.py) • [python_modulefinder](https://docs.python.org/3/library/modulefinder.html) • [dis](https://docs.python.org/3/library/dis.html) • [python_mccabe](https://github.com/flintwork/mccabe) • [bandit](https://wiki.openstack.org/wiki/Security/Projects/Bandit)
|
||||||
|
|
@ -39,6 +39,7 @@ Extensions(79) | Tools(50)
|
||||||
.zip .jar .apk | [zipinfo](http://www.info-zip.org/UnZip.html)
|
.zip .jar .apk | [zipinfo](http://www.info-zip.org/UnZip.html)
|
||||||
.tar.gz .tgz | [tar_gz](http://www.gnu.org/software/tar/manual/tar.html)
|
.tar.gz .tgz | [tar_gz](http://www.gnu.org/software/tar/manual/tar.html)
|
||||||
.tar.bz2 | [tar_bz2](http://www.gnu.org/software/tar/manual/tar.html)
|
.tar.bz2 | [tar_bz2](http://www.gnu.org/software/tar/manual/tar.html)
|
||||||
|
.rar | [unrar](http://www.rarlabs.com/)
|
||||||
.a .so | [nm](https://linux.die.net/man/1/nm)
|
.a .so | [nm](https://linux.die.net/man/1/nm)
|
||||||
.png .jpg .gif .bmp .ppm .tiff .tga | [identify](http://www.imagemagick.org/script/identify.php) • [pil](http://python-pillow.github.io/) • [pil_half](http://python-pillow.github.io/)
|
.png .jpg .gif .bmp .ppm .tiff .tga | [identify](http://www.imagemagick.org/script/identify.php) • [pil](http://python-pillow.github.io/) • [pil_half](http://python-pillow.github.io/)
|
||||||
.bash .sh .dash .ksh | [shellcheck](http://hackage.haskell.org/package/ShellCheck)
|
.bash .sh .dash .ksh | [shellcheck](http://hackage.haskell.org/package/ShellCheck)
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ tools_for_extensions = [
|
||||||
[["zip", "jar", "apk"], ["zipinfo"]],
|
[["zip", "jar", "apk"], ["zipinfo"]],
|
||||||
[["tar.gz", "tgz"],["tar_gz"]],
|
[["tar.gz", "tgz"],["tar_gz"]],
|
||||||
[["tar.bz2"], ["tar_bz2"]],
|
[["tar.bz2"], ["tar_bz2"]],
|
||||||
|
[["rar"], ["unrar"]],
|
||||||
[["a", "so"], ["nm"]],
|
[["a", "so"], ["nm"]],
|
||||||
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["identify", "pil",
|
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["identify", "pil",
|
||||||
"pil_half"]],
|
"pil_half"]],
|
||||||
|
|
@ -84,6 +85,12 @@ tools_for_extensions = [
|
||||||
command = "tar jtvf"
|
command = "tar jtvf"
|
||||||
success_status = "normal"
|
success_status = "normal"
|
||||||
|
|
||||||
|
[unrar]
|
||||||
|
dependencies = ["unrar"]
|
||||||
|
url = "unrar"
|
||||||
|
command = "unrar l"
|
||||||
|
success_status = "normal"
|
||||||
|
|
||||||
[nm]
|
[nm]
|
||||||
dependencies = ["binutils"]
|
dependencies = ["binutils"]
|
||||||
url = "https://linux.die.net/man/1/nm"
|
url = "https://linux.die.net/man/1/nm"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue