Metadata-Version: 2.1
Name: ssh-connect
Version: 1.0.0
Summary: A small script to connect the existing ssh agent
Home-page: https://github.com/li-zyang/zTools/tree/master/ssh-connect
Author: li-zyang
Author-email: K_AEIx@163.com
License: UNKNOWN
Description: # ssh-connect
        A small script to connect the existing ssh agent
        
        ## version
        ssh-connect v1.0
        
        ## installation
        ```
        pip install ssh-connect
        ```
        
        ## usage
        ```
        eval $(python -m ssh-connect)
        ```
        You can give this command an alias to simplify the it:   
        Add the following line to you bashrc  
        > Usually `~/.bashrc` (current user) or `/etc/bashrc` (global); if you use Git For Windows, it's `/etc/bash.bashrc`
        ```
        alias ssh-connect='python -m ssh-connect'
        ```
        Then you can use the command
        ```
        eval $(ssh-connect)
        ```
        The command finds the first existing ssh agent and connect it.  
        > Note: If you have more than one ssh agent running in the background, which agent that would be connected is undefined. 
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
