Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felipenoris/sshagentsetup.jl
A tool to setup `ssh-agent`
https://github.com/felipenoris/sshagentsetup.jl
Last synced: about 2 months ago
JSON representation
A tool to setup `ssh-agent`
- Host: GitHub
- URL: https://github.com/felipenoris/sshagentsetup.jl
- Owner: felipenoris
- License: mit
- Created: 2022-04-12T18:22:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-15T23:55:02.000Z (over 2 years ago)
- Last Synced: 2024-11-12T15:11:57.641Z (about 2 months ago)
- Language: Julia
- Size: 8.79 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SSHAgentSetup.jl
A tool to setup `ssh-agent`.
# Usage
```julia
import SSHAgentSetup# starts `ssh-agent`
SSHAgentSetup.setup()# uses `ssh-add` to add user key to ssh agent
SSHAgentSetup.add_key(joinpath(homedir(), ".ssh", "id_rsa"))
```