Metadata-Version: 2.1
Name: mglcmdtools
Version: 0.0.2
Summary: common cmd tools to be used in Python3 scripts. By Guanliang MENG, see https://github.com/linzhi2013/mglcmdtools.
Home-page: https://github.com/linzhi2013/mglcmdtools
Author: Guanliang Meng
Author-email: mengguanliang@foxmail.com
License: UNKNOWN
Description: # mglcmdtools
        
        ## 1 Introduction
        
        `mglcmdtools` is a collection of common cmd tools intended to be used in Python3 scripts. By Guanliang MENG, see https://github.com/linzhi2013/mglcmdtools. 
        
        
        ## 2 Installation
        
            pip install mglcmdtools
        
        
        ## 3 Usage
            
            from mglcmdtools import rm_and_mkdir, runcmd
        
            rm_and_mkdir('Newdirectory')
        
            rm_and_mkdir('Newdirectory', force=True)
        
        
            cmd = 'ls -lhtr /'
            runcmd(cmd)
        
            runcmd(cmd, verbose=True)
        
        ## 4 Author
        Guanliang MENG
        
        ## 5 Citation
        Currently I have no plan to publish `mglcmdtools`.
        
        
        
        
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3
Description-Content-Type: text/markdown
