Socket
Socket
Sign inDemoInstall

127-ssh

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

127-ssh

Capture your command not found and tries to ssh


Version published
Weekly downloads
13
increased by30%
Maintainers
1
Weekly downloads
 
Created
Source

127 SSH

Capture your command not found errors and tries to ssh.

Installation

To use 127-ssh you need to use zsh (or maybe not, but you'll need something similar to zsh's TRAPZERR() hook) and node.

Start by installing the package with npm:

npm install -g 127-ssh

Then in your ~/.zshrc add this:

command_not_found_handler () {
   printf "Command not found: $1"
   127-ssh $1
   return 127
}

For 127-ssh to work, you need to use an ssh config file kept in ~/.ssh/config and use it to store your ssh hosts.

Usage

Whenever you type something in your prompt that exit as a command not found, the script will work. It tries to find an ssh configuration with a Host corresponding to the command you typed.

LICENSE

MIT

FAQs

Package last updated on 23 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc