From 655461a3f2ee7ff5daf83a86029f40ad286c788a Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 6 Sep 2018 04:12:42 +0530 Subject: Add wrapper script for patool integration --- scripts/natool/natool | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 scripts/natool/natool (limited to 'scripts') diff --git a/scripts/natool/natool b/scripts/natool/natool new file mode 100755 index 0000000..dd08d54 --- /dev/null +++ b/scripts/natool/natool @@ -0,0 +1,40 @@ +#!/usr/bin/env python3 + +# ############################################################################# +# natool: a wrapper script to patool to list, extract and create archives +# +# usage: natool [-l] [-x] [archive] [file/dir] +# +# Examples: +# - list archive : natool -l archive.7z +# - extract archive: natool -x archive.7z +# - create archive : natool archive.7z archive_dir +# +# Brief: +# natool is written to integrate patool (instead of the default atool) with nnn +# Two copies of this file should be dropped somewhere in $PATH - atool, apack +# +# Author: Arun Prakash Jana +# Email: engineerarun@gmail.com +# Homepage: https://github.com/jarun/nnn +# Copyright © 2018 Arun Prakash Jana +# ############################################################################# + +import sys +from subprocess import Popen, PIPE, DEVNULL + +if len(sys.argv) != 3: + print('usage: natool [-l] [-x] [archive] [file/dir]') + sys.exit(0) + +if sys.argv[1] == '-x': + cmd = ['patool', '--non-interactive', 'extract', sys.argv[2]] +elif sys.argv[1] == '-l': + cmd = ['patool', '--non-interactive', 'list', sys.argv[2]] +else: + cmd = ['patool', '--non-interactive', 'create', sys.argv[1], sys.argv[2]] + +pipe = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE) +out, err = pipe.communicate() +print(out.decode()) +print(err.decode()) -- cgit v1.2.3-70-g09d2